mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-22 07:58:06 +03:00
14 lines
299 B
C#
14 lines
299 B
C#
using Content.Shared.Eui;
|
|
using Robust.Shared.Serialization;
|
|
using System;
|
|
using Robust.Shared.GameObjects;
|
|
|
|
namespace Content.Shared.Administration
|
|
{
|
|
[Serializable, NetSerializable]
|
|
public sealed class SetOutfitEuiState : EuiStateBase
|
|
{
|
|
public EntityUid TargetEntityId;
|
|
}
|
|
}
|