mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-09-03 12:13:40 +00:00
13 lines
256 B
C++
13 lines
256 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "FortNavArea.h"
|
|
#include "FortNavArea_DefenderNull.generated.h"
|
|
|
|
UCLASS(Blueprintable)
|
|
class UFortNavArea_DefenderNull : public UFortNavArea {
|
|
GENERATED_BODY()
|
|
public:
|
|
UFortNavArea_DefenderNull();
|
|
};
|
|
|