9 lines
156 B
C#
9 lines
156 B
C#
|
|
using MessagePack;
|
||
|
|
|
||
|
|
namespace Blackjack;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Tag component marking the deck entity.
|
||
|
|
/// </summary>
|
||
|
|
[MessagePackObject]
|
||
|
|
public struct Deck { }
|