22 lines
362 B
C#
22 lines
362 B
C#
|
|
using Robust.Shared.Serialization;
|
||
|
|
|
||
|
|
namespace Content.Shared._White.Chaplain;
|
||
|
|
|
||
|
|
|
||
|
|
[Serializable, NetSerializable]
|
||
|
|
public enum SelectArmorUi
|
||
|
|
{
|
||
|
|
Key
|
||
|
|
}
|
||
|
|
|
||
|
|
[Serializable, NetSerializable]
|
||
|
|
public class ArmorSelectedEvent : BoundUserInterfaceMessage
|
||
|
|
{
|
||
|
|
public int SelectedIndex;
|
||
|
|
|
||
|
|
public ArmorSelectedEvent(int index)
|
||
|
|
{
|
||
|
|
SelectedIndex = index;
|
||
|
|
}
|
||
|
|
}
|