mirror of
https://github.com/Ed94/Cog.git
synced 2026-06-13 16:12:23 -07:00
21 lines
440 B
C++
21 lines
440 B
C++
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "CogSampleTeamInterface.generated.h"
|
|
|
|
//--------------------------------------------------------------------------------------------------------------------------
|
|
UINTERFACE(MinimalAPI, Blueprintable)
|
|
class UCogSampleTeamInterface : public UInterface
|
|
{
|
|
GENERATED_BODY()
|
|
};
|
|
|
|
class ICogSampleTeamInterface
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
public:
|
|
|
|
virtual int32 GetTeam() const { return 0; }
|
|
};
|