2026-07-20 22:52:28 +08:00
|
|
|
using MessagePack;
|
|
|
|
|
using OECS;
|
|
|
|
|
|
|
|
|
|
namespace Game.CardWars;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Relationship from a horn/skull token entity to the target entity it's placed on.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[MessagePackObject]
|
|
|
|
|
public record struct PlacedOn : IRelationship
|
|
|
|
|
{
|
2026-07-20 22:59:27 +08:00
|
|
|
[Key(0)] public Entity Target { get; set; }
|
2026-07-20 22:52:28 +08:00
|
|
|
}
|