mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-28 04:03:33 +00:00
13 lines
287 B
C++
13 lines
287 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "FortTestControllerBase.h"
|
|
#include "FortTestControllerProfileGo.generated.h"
|
|
|
|
UCLASS(Blueprintable)
|
|
class UFortTestControllerProfileGo : public UFortTestControllerBase {
|
|
GENERATED_BODY()
|
|
public:
|
|
UFortTestControllerProfileGo();
|
|
};
|
|
|