GASATHON/Project/Source/Gasa/GasaPlayerController.h

19 lines
301 B
C
Raw Normal View History

2024-04-12 13:10:06 -07:00
#pragma once
2024-04-12 13:30:01 -07:00
#include "GasaCommon.h"
2024-04-12 13:10:06 -07:00
#include "GasaPlayerController.generated.h"
UCLASS(Blueprintable)
class GASA_API AGasaPlayerController : public APlayerController
{
GENERATED_BODY()
public:
2024-04-12 13:30:01 -07:00
TObjectPtr<UInputMappingContext> IMC;
2024-04-12 13:10:06 -07:00
2024-04-12 13:30:01 -07:00
AGasaPlayerController();
void BeginPlay() override;
2024-04-12 13:10:06 -07:00
};