24 lines
324 B
C#
24 lines
324 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Ame;
|
|
|
|
[Virtual]
|
|
public partial class SharedAmeShieldComponent : Component
|
|
{
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum AmeShieldVisuals
|
|
{
|
|
Core,
|
|
CoreState
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum AmeCoreState
|
|
{
|
|
Off,
|
|
Weak,
|
|
Strong
|
|
}
|