17 lines
344 B
C++
17 lines
344 B
C++
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "ProjectT/System/Core/GameModes/CorePlayerController.h"
|
|
#include "SPPlayerController.generated.h"
|
|
|
|
/**
|
|
*
|
|
*/
|
|
UCLASS()
|
|
class PROJECTT_API ASPPlayerController : public ACorePlayerController
|
|
{
|
|
GENERATED_BODY()
|
|
};
|