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.
This commit is contained in:
23
Content.Shared/Ame/Components/SharedAmeShieldComponent.cs
Normal file
23
Content.Shared/Ame/Components/SharedAmeShieldComponent.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user