Files
projectlighthouse/Source/ProjectLighthouse/ProjectLighthousePlayerController.h
2024-06-02 18:10:57 +02:00

32 lines
633 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "GameFramework/PlayerController.h"
#include "ProjectLighthousePlayerController.generated.h"
class UInputMappingContext;
/**
*
*/
UCLASS()
class PROJECTLIGHTHOUSE_API AProjectLighthousePlayerController : public APlayerController
{
GENERATED_BODY()
protected:
/** Input Mapping Context to be used for player input */
UPROPERTY(EditAnywhere, BlueprintReadOnly, Category = Input)
UInputMappingContext* InputMappingContext;
// Begin Actor interface
protected:
virtual void BeginPlay() override;
// End Actor interface
};