Files
OldThink/Content.Shared/GameObjects/Components/Construction/MachineFrameVisuals.cs

12 lines
206 B
C#
Raw Normal View History

#nullable enable
using Robust.Shared.Serialization;
namespace Content.Shared.GameObjects.Components.Construction
{
[NetSerializable]
public enum MachineFrameVisuals
{
State,
}
}