Files
OldThink/Content.Shared/_White/Wizard/Teleport/TeleportSpellEuiState.cs

17 lines
397 B
C#
Raw Permalink Normal View History

2024-06-09 20:49:07 +03:00
using Content.Shared.Eui;
using Robust.Shared.Serialization;
namespace Content.Shared._White.Wizard.Teleport;
[Serializable, NetSerializable]
public sealed class TeleportSpellEuiState : EuiStateBase
{
public Dictionary<int, string> Locations = new();
}
[Serializable, NetSerializable]
public sealed class TeleportSpellTargetLocationSelected : EuiMessageBase
{
public int LocationUid;
}