Files
FNGameProj/Source/FortniteGame/Public/FortTeamActorInterface.h
2024-01-21 00:41:14 +01:00

19 lines
420 B
C++

#pragma once
#include "CoreMinimal.h"
#include "GenericTeamAgentInterface.h"
#include "FortTeamActorInterface.generated.h"
UINTERFACE()
class UFortTeamActorInterface : public UGenericTeamAgentInterface {
GENERATED_BODY()
};
class IFortTeamActorInterface : public IGenericTeamAgentInterface {
GENERATED_BODY()
public:
UFUNCTION()
virtual uint8 GetTeam() const PURE_VIRTUAL(GetTeam, return 0;);
};