Files
wwdpublic/Content.Shared/Ame/Components/SharedAmeShieldComponent.cs
LordCarve ba36e5195f Refactor AME to use ItemSlot for Fuel (#25558)
* Using wrench on AME doesn't first try to put it in.

* Refactor AME to use ItemSlot for fuel.

* Apparently these names want to match.

(cherry picked from commit c47391011d0f7f56dfcba8e4db348f0dc0d58c09)
2024-03-07 01:08:04 +01:00

24 lines
332 B
C#

using Robust.Shared.Serialization;
namespace Content.Shared.Ame.Components;
[Virtual]
public partial class SharedAmeShieldComponent : Component
{
}
[Serializable, NetSerializable]
public enum AmeShieldVisuals
{
Core,
CoreState
}
[Serializable, NetSerializable]
public enum AmeCoreState
{
Off,
Weak,
Strong
}