Files
tbd-station-14/Content.Shared/Administration/SetOutfitEuiState.cs
Leo 8eb96cfb01 Add setoutfit command (#2874)
* Add setoutfit command

* Adds setoutfit as a verb and adds a proper UI to the command

* Removes from AdminMenuWindow

* Changes the SetOutfit verb to be a component verb instead of a global verb

* Addresses reviews

* Remove empty method

* Remove on server aswell
2021-01-08 14:29:08 +01:00

14 lines
292 B
C#

using Content.Shared.Eui;
using Robust.Shared.Serialization;
using System;
using Robust.Shared.GameObjects;
namespace Content.Shared.Administration
{
[Serializable, NetSerializable]
public class SetOutfitEuiState : EuiStateBase
{
public EntityUid TargetEntityId;
}
}