* 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
14 lines
292 B
C#
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;
|
|
}
|
|
}
|