Files
tbd-station-14/Content.Shared/Vapor/SharedVaporComponent.cs
2022-05-13 17:59:03 +10:00

19 lines
328 B
C#

using Robust.Shared.Serialization;
namespace Content.Shared.Vapor
{
[Virtual]
public class SharedVaporComponent : Component
{
public const string SolutionName = "vapor";
}
[Serializable, NetSerializable]
public enum VaporVisuals
{
Rotation,
Color,
State,
}
}