using MessagePack; namespace Game.CardWars; /// /// Placed on the singleton when a 决斗家 (Duelist) is played. /// The play phase ends when the turn comes back to this player. /// Removed automatically when the phase transitions. /// [MessagePackObject] public struct PendingDuelist { [Key(0)] public int PlayerIndex; }