Files
OldThink/Content.Shared/_White/Cult/UI/CultTeleportSpellEuiState.cs
Aviu00 4d09ed9245 Spellblade update (#346)
* - tweak: Don't close eui too quickly.

* - add: Spellblade update.

* - fix: Cult teleport spell.
2024-06-11 23:07:47 +03:00

17 lines
384 B
C#

using Content.Shared.Eui;
using Robust.Shared.Serialization;
namespace Content.Shared._White.Cult.UI;
[Serializable, NetSerializable]
public sealed class CultTeleportSpellEuiState : EuiStateBase
{
public Dictionary<int, string> Runes = new();
}
[Serializable, NetSerializable]
public sealed class TeleportSpellTargetRuneSelected : EuiMessageBase
{
public int RuneUid;
}