diff --git a/Content/Player/BP_TankPlayerController.uasset b/Content/Player/BP_TankPlayerController.uasset new file mode 100644 index 0000000..a7bacea --- /dev/null +++ b/Content/Player/BP_TankPlayerController.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c39e81e6ba01b51836bad164329afc66125a5ad52ab7f0a9b64645edf76c597 +size 20390 diff --git a/Source/tank/TankPlayerController.cpp b/Source/tank/TankPlayerController.cpp new file mode 100644 index 0000000..d882833 --- /dev/null +++ b/Source/tank/TankPlayerController.cpp @@ -0,0 +1,5 @@ +// Fill out your copyright notice in the Description page of Project Settings. + + +#include "TankPlayerController.h" + diff --git a/Source/tank/TankPlayerController.h b/Source/tank/TankPlayerController.h new file mode 100644 index 0000000..c032eeb --- /dev/null +++ b/Source/tank/TankPlayerController.h @@ -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() + +};