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

17 lines
401 B
C#
Raw Permalink Normal View History

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