Files
OldThink/Content.Shared/_White/Cult/UI/CultTeleportSpellEuiState.cs

17 lines
384 B
C#
Raw Permalink Normal View History

2024-01-27 15:19:52 +03:00
using Content.Shared.Eui;
using Robust.Shared.Serialization;
namespace Content.Shared._White.Cult.UI;
2024-01-27 15:19:52 +03:00
[Serializable, NetSerializable]
public sealed class CultTeleportSpellEuiState : EuiStateBase
2024-01-27 15:19:52 +03:00
{
public Dictionary<int, string> Runes = new();
}
[Serializable, NetSerializable]
public sealed class TeleportSpellTargetRuneSelected : EuiMessageBase
{
public int RuneUid;
}