* basics & visuals * pneumatic cannon works perf * loc + popups * gas tank does stuff + queue changes * updates * b * forcefeeding * inhand * crafting! * pie cannon now is a pneumatic cannon * oopy * fix for entman + verbs * pie * change for tools * actual * combat mode + better sounds * reviews
19 lines
325 B
C#
19 lines
325 B
C#
using System;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.PneumaticCannon
|
|
{
|
|
[Serializable, NetSerializable]
|
|
public enum PneumaticCannonVisualLayers : byte
|
|
{
|
|
Base,
|
|
Tank
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum PneumaticCannonVisuals
|
|
{
|
|
Tank
|
|
}
|
|
}
|