Files
2026-04-22 15:51:07 +02:00

13 lines
242 B
C++

#pragma once
#include "CoreMinimal.h"
#include "UObject/Object.h"
#include "FortServerOnlyObject.generated.h"
UCLASS(Blueprintable)
class UFortServerOnlyObject : public UObject {
GENERATED_BODY()
public:
UFortServerOnlyObject();
};