mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-09-02 19:24:04 +00:00
16 lines
325 B
C++
16 lines
325 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "UObject/Interface.h"
|
|
#include "FortPlayerCustomizable.generated.h"
|
|
|
|
UINTERFACE()
|
|
class FORTNITEGAME_API UFortPlayerCustomizable : public UInterface {
|
|
GENERATED_BODY()
|
|
};
|
|
|
|
class FORTNITEGAME_API IFortPlayerCustomizable : public IInterface {
|
|
GENERATED_BODY()
|
|
public:
|
|
};
|
|
|