17 lines
397 B
C#
17 lines
397 B
C#
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;
|
|
}
|