using MessagePack; using OECS; namespace Game.Blackjack; /// /// Relationship from a hand entity to a card entity, /// representing that the hand holds this card. /// [MessagePackObject] public record struct Holds : IRelationship { [Key(0)] public Entity Target { get; set; } }