mirror of
https://github.com/Ed94/Cog.git
synced 2026-06-13 00:01:37 -07:00
42ca1afc6a
Cog Sample: Make Area a component instead of an actor Cog Sample: Add Basic actor for Projectiles, Areas, etc... Cog Sample: Start to add Projectile Cog Sample: Start to add SpawnPrediction
23 lines
353 B
C++
23 lines
353 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; }
|
|
|
|
virtual void SetTeam(int32) { }
|
|
};
|
|
|