Files
OldThink/Content.Shared/_White/Wizard/Teleport/WizardTeleportSpellEuiState.cs
BIGZi0348 d101601596 Revert "Merge pull request #188 from frosty-dev/test"
This reverts commit f7890e9378, reversing
changes made to af410cb46e.
2024-11-28 20:21:48 +03:00

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;
}