mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-09-02 19:27:55 +00:00
16 lines
306 B
C++
16 lines
306 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "UObject/Interface.h"
|
|
#include "FortInventoryOwnerInterface.generated.h"
|
|
|
|
UINTERFACE()
|
|
class UFortInventoryOwnerInterface : public UInterface {
|
|
GENERATED_BODY()
|
|
};
|
|
|
|
class IFortInventoryOwnerInterface : public IInterface {
|
|
GENERATED_BODY()
|
|
public:
|
|
};
|
|
|