mirror of
https://github.com/Ed94/Cog.git
synced 2026-06-13 08:02:23 -07:00
24 lines
422 B
C++
24 lines
422 B
C++
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "AbilitySystemInterface.h"
|
|
#include "GameFramework/PlayerController.h"
|
|
#include "CogSamplePlayerController.generated.h"
|
|
|
|
UCLASS(config=Game)
|
|
class ACogSamplePlayerController : public APlayerController
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
public:
|
|
|
|
ACogSamplePlayerController();
|
|
virtual void BeginPlay() override;
|
|
virtual void AcknowledgePossession(APawn* P);
|
|
|
|
private:
|
|
|
|
|
|
};
|
|
|