using MessagePack; using OECS; namespace Game.CardWars; /// /// Relationship from a card entity to the player entity whose field it's on. /// [MessagePackObject] public record struct OnField : IRelationship { [Key(0)] public Entity Source { get; set; } [Key(1)] public Entity Target { get; set; } }