Create TankPlayerController

This commit is contained in:
baz 2024-06-04 00:43:19 +01:00
parent a194605221
commit cec5f2e90d
3 changed files with 25 additions and 0 deletions

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

Binary file not shown.

View File

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

View File

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