mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
19 lines
420 B
C++
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;);
|
|
|
|
};
|
|
|