Files
tbd-station-14/Content.Shared/GameObjects/Components/Power/AME/SharedAMEShieldComponent.cs
DrSmugleaf 74943a2770 Typo, redundant string interpolation, namespaces and imports cleanup (#2068)
* Readonly, typos and redundant string interpolations

* Namespaces

* Optimize imports

* Address reviews

* but actually

* Localize missing strings

* Remove redundant vars
2020-09-13 14:23:52 +02:00

26 lines
512 B
C#

using System;
using Robust.Shared.GameObjects;
using Robust.Shared.Serialization;
namespace Content.Shared.GameObjects.Components.Power.AME
{
public class SharedAMEShieldComponent : Component
{
public override string Name => "AMEShield";
[Serializable, NetSerializable]
public enum AMEShieldVisuals
{
Core,
CoreState
}
public enum AMECoreState
{
Off,
Weak,
Strong
}
}
}