9 lines
171 B
C#
9 lines
171 B
C#
|
|
using MessagePack;
|
||
|
|
|
||
|
|
namespace Blackjack;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Tag component marking the player's hand entity.
|
||
|
|
/// </summary>
|
||
|
|
[MessagePackObject]
|
||
|
|
public struct PlayerHand { }
|