Files
RobustToolbox/Robust.Shared/GameObjects/Systems/ScaleVisualsSystem.cs
metalgearsloth fd625e0b30 Fix scale command (#2784)
* Fix scale command

Everything will be visualizers.

* comment for future coders
2022-05-04 22:49:42 +10:00

12 lines
179 B
C#

using System;
using Robust.Shared.Serialization;
namespace Robust.Shared.GameObjects;
[Serializable, NetSerializable]
public enum ScaleVisuals : byte
{
// Blep
Scale,
}