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