2022-11-25 09:11:46 -08:00
|
|
|
using Godot;
|
|
|
|
using SupaLidlGame.Utils;
|
|
|
|
|
2023-06-03 18:21:46 -07:00
|
|
|
namespace SupaLidlGame.BoundingBoxes;
|
|
|
|
|
|
|
|
public abstract partial class BoundingBox : Area2D, IFaction
|
2022-11-25 09:11:46 -08:00
|
|
|
{
|
2023-06-03 18:21:46 -07:00
|
|
|
[Export]
|
|
|
|
public ushort Faction { get; set; }
|
2022-11-25 09:11:46 -08:00
|
|
|
}
|