17 lines
401 B
C#
17 lines
401 B
C#
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]
|
|
sealed file class TeleportSpellTargetLocationSelected : EuiMessageBase
|
|
{
|
|
public int LocationUid;
|
|
}
|