CogSample: const and typo fix

This commit is contained in:
Arnaud Jamin
2025-01-25 21:37:29 -05:00
parent 9fecf82663
commit c345235e96
2 changed files with 6 additions and 7 deletions
+2 -2
View File
@@ -25,9 +25,9 @@ class ACogSamplePlayerController
public:
static const ACogSamplePlayerController* GetFirstLocalPlayerControllerConst(UObject* WorldContextObject);
static const ACogSamplePlayerController* GetFirstLocalPlayerControllerConst(const UObject* WorldContextObject);
static ACogSamplePlayerController* GetFirstLocalPlayerController(UObject* WorldContextObject);
static ACogSamplePlayerController* GetFirstLocalPlayerController(const UObject* WorldContextObject);
ACogSamplePlayerController();