Files
FNGameProj/Source/FortniteGame/Public/FortServerOnlyObject.h
2024-01-21 00:41:14 +01: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();
};