mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 21:48:58 +03:00
* 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)
24 lines
332 B
C#
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
|
|
}
|