First commit
This commit is contained in:
31
Source/ProjectLighthouse/ProjectLighthousePlayerController.h
Normal file
31
Source/ProjectLighthouse/ProjectLighthousePlayerController.h
Normal file
@@ -0,0 +1,31 @@
|
||||
// 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
|
||||
};
|
||||
Reference in New Issue
Block a user