13 lines
195 B
C#
13 lines
195 B
C#
|
|
using MessagePack;
|
||
|
|
|
||
|
|
namespace Game.CardWars;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Tag + index for a player entity.
|
||
|
|
/// </summary>
|
||
|
|
[MessagePackObject]
|
||
|
|
public record struct Player
|
||
|
|
{
|
||
|
|
[Key(0)] public int Index;
|
||
|
|
}
|