25 lines
444 B
C#
25 lines
444 B
C#
using System;
|
|
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.AME
|
|
{
|
|
[Virtual]
|
|
public class SharedAMEShieldComponent : Component
|
|
{
|
|
[Serializable, NetSerializable]
|
|
public enum AMEShieldVisuals
|
|
{
|
|
Core,
|
|
CoreState
|
|
}
|
|
|
|
public enum AMECoreState
|
|
{
|
|
Off,
|
|
Weak,
|
|
Strong
|
|
}
|
|
}
|
|
}
|