Unreal_simple_journal/Source/EncoreUnProjet/EncoreUnProjetPlayerController.h
2023-10-22 19:29:46 +02:00

32 lines
624 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "GameFramework/PlayerController.h"
#include "EncoreUnProjetPlayerController.generated.h"
class UInputMappingContext;
/**
*
*/
UCLASS()
class ENCOREUNPROJET_API AEncoreUnProjetPlayerController : 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
};