mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-27 03:53:25 +00:00
16 lines
297 B
C++
16 lines
297 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "UObject/Interface.h"
|
|
#include "RichSmartObjectInterface.generated.h"
|
|
|
|
UINTERFACE()
|
|
class URichSmartObjectInterface : public UInterface {
|
|
GENERATED_BODY()
|
|
};
|
|
|
|
class IRichSmartObjectInterface : public IInterface {
|
|
GENERATED_BODY()
|
|
public:
|
|
};
|
|
|