SupaLidlGame/Utils/IFaction.cs

14 lines
254 B
C#
Raw Permalink Normal View History

2022-11-19 21:21:12 -08:00
using Godot;
namespace SupaLidlGame.Utils
{
public interface IFaction
{
/// <summary>
/// The faction index that this entity belongs to.
/// </summary>
[Export]
public ushort Faction { get; set; }
}
}