14 lines
254 B
C#
14 lines
254 B
C#
|
using Godot;
|
||
|
|
||
|
namespace SupaLidlGame.Utils
|
||
|
{
|
||
|
public interface IFaction
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// The faction index that this entity belongs to.
|
||
|
/// </summary>
|
||
|
[Export]
|
||
|
public ushort Faction { get; set; }
|
||
|
}
|
||
|
}
|