10 lines
199 B
C#
10 lines
199 B
C#
|
|
using MessagePack;
|
||
|
|
|
||
|
|
namespace Game.CardWars;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Tag component for a horn token. Can be placed on cards, banners, or leaders.
|
||
|
|
/// </summary>
|
||
|
|
[MessagePackObject]
|
||
|
|
public struct Horn { }
|