Add Player Controller

This commit is contained in:
Louis Hobbs 2022-12-13 04:11:09 +00:00
parent c47a072996
commit 26e875e47e
3 changed files with 26 additions and 0 deletions

BIN
Content/Player/PlayerController.uasset (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -0,0 +1,4 @@
// Fill out your copyright notice in the Description page of Project Settings.
#include "NakatomiPlayerController.h"

View File

@ -0,0 +1,19 @@
// Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "GameFramework/PlayerController.h"
#include "NakatomiPlayerController.generated.h"
/**
*
*/
UCLASS()
class NAKATOMI_API ANakatomiPlayerController : public APlayerController
{
GENERATED_BODY()
public:
};