2024-01-27 15:19:52 +03:00
|
|
|
|
using Content.Shared.Eui;
|
|
|
|
|
|
using Robust.Shared.Serialization;
|
|
|
|
|
|
|
2024-01-28 18:37:24 +07:00
|
|
|
|
namespace Content.Shared._White.Cult.UI;
|
2024-01-27 15:19:52 +03:00
|
|
|
|
|
|
|
|
|
|
[Serializable, NetSerializable]
|
2024-06-11 20:07:47 +00:00
|
|
|
|
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;
|
|
|
|
|
|
}
|