Delta-v/Content.Shared/GameObjects/Components/ReinforcedWallVisuals.cs

13 lines
237 B
C#

#nullable enable
using System;
using Robust.Shared.Serialization;
namespace Content.Shared.GameObjects.Components
{
[Serializable, NetSerializable]
public enum ReinforcedWallVisuals
{
DeconstructionStage,
}
}