13 lines
207 B
C#
13 lines
207 B
C#
|
|
using MessagePack;
|
||
|
|
|
||
|
|
namespace Game.CardWars;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// A castle that can be won each round.
|
||
|
|
/// </summary>
|
||
|
|
[MessagePackObject]
|
||
|
|
public record struct Castle
|
||
|
|
{
|
||
|
|
[Key(0)] public CastleColor Color;
|
||
|
|
}
|