* - tweak: Don't close eui too quickly. * - add: Spellblade update. * - fix: Cult teleport spell.
17 lines
384 B
C#
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;
|
|
}
|