15 lines
295 B
C++
Executable file
15 lines
295 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "UObject/Interface.h"
|
|
#include "StatusAddedComponent.generated.h"
|
|
|
|
UINTERFACE(MinimalAPI)
|
|
class UStatusAddedComponent : public UInterface {
|
|
GENERATED_BODY()
|
|
};
|
|
|
|
class IStatusAddedComponent : public IInterface {
|
|
GENERATED_BODY()
|
|
public:
|
|
};
|
|
|