mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-09-02 12:33:25 +00:00
16 lines
318 B
C++
16 lines
318 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "UObject/Interface.h"
|
|
#include "FortSpawnContextObjectInterface.generated.h"
|
|
|
|
UINTERFACE()
|
|
class UFortSpawnContextObjectInterface : public UInterface {
|
|
GENERATED_BODY()
|
|
};
|
|
|
|
class IFortSpawnContextObjectInterface : public IInterface {
|
|
GENERATED_BODY()
|
|
public:
|
|
};
|
|
|