22 lines
440 B
C++
22 lines
440 B
C++
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "GameFramework/PlayerController.h"
|
|
#include "ToonTanksPlayerController.generated.h"
|
|
|
|
/**
|
|
*
|
|
*/
|
|
UCLASS()
|
|
class TOONTANKS_API AToonTanksPlayerController : public APlayerController
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
public:
|
|
// Set this controller to Enabled or Disabled.
|
|
void SetPlayerEnabledState(bool bPlayerEnabled);
|
|
|
|
};
|