GASATHON/Project/Source/Gasa/GasaPlayerController.h
2024-04-12 16:30:01 -04:00

19 lines
301 B
C++

#pragma once
#include "GasaCommon.h"
#include "GasaPlayerController.generated.h"
UCLASS(Blueprintable)
class GASA_API AGasaPlayerController : public APlayerController
{
GENERATED_BODY()
public:
TObjectPtr<UInputMappingContext> IMC;
AGasaPlayerController();
void BeginPlay() override;
};