10 lines
252 B
C#
10 lines
252 B
C#
|
|
using MessagePack;
|
||
|
|
|
||
|
|
namespace Game.CardWars;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Tag component marking a card entity as the leader card.
|
||
|
|
/// The leader is always on the field and contributes its rank to power.
|
||
|
|
/// </summary>
|
||
|
|
[MessagePackObject]
|
||
|
|
public struct Leader { }
|