mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-28 12:13:26 +00:00
13 lines
298 B
C++
13 lines
298 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "FortGameModeZone.h"
|
|
#include "FortGameModeDeployableBase.generated.h"
|
|
|
|
UCLASS(Blueprintable, MinimalAPI, NonTransient)
|
|
class AFortGameModeDeployableBase : public AFortGameModeZone {
|
|
GENERATED_BODY()
|
|
public:
|
|
AFortGameModeDeployableBase();
|
|
};
|
|
|