using MessagePack; using OECS; namespace Game.CardWars; /// /// Relationship from a horn/skull token entity to the target entity it's placed on. /// [MessagePackObject] public record struct PlacedOn : IRelationship { [Key(0)] public Entity Target { get; set; } }