12 lines
219 B
C#
12 lines
219 B
C#
|
using Godot;
|
||
|
using SupaLidlGame.Utils;
|
||
|
|
||
|
namespace SupaLidlGame.BoundingBoxes
|
||
|
{
|
||
|
public abstract partial class BoundingBox : Area2D, IFaction
|
||
|
{
|
||
|
[Export]
|
||
|
public ushort Faction { get; set; }
|
||
|
}
|
||
|
}
|