Files
2026-04-22 15:51:07 +02:00

16 lines
340 B
C++

#pragma once
#include "CoreMinimal.h"
#include "UObject/Interface.h"
#include "FortActorIndicatorInterface.generated.h"
UINTERFACE()
class FORTNITEGAME_API UFortActorIndicatorInterface : public UInterface {
GENERATED_BODY()
};
class FORTNITEGAME_API IFortActorIndicatorInterface : public IInterface {
GENERATED_BODY()
public:
};