mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-04 02:57:08 +02:00
* Fix scale command Everything will be visualizers. * comment for future coders
12 lines
179 B
C#
12 lines
179 B
C#
using System;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Robust.Shared.GameObjects;
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum ScaleVisuals : byte
|
|
{
|
|
// Blep
|
|
Scale,
|
|
}
|