Files
tbd-station-14/Content.Shared/Vapor/SharedVaporComponent.cs
2022-02-16 18:23:23 +11:00

21 lines
375 B
C#

using System;
using Robust.Shared.GameObjects;
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,
}
}