Files
tbd-station-14/Content.Shared/Vapor/SharedVaporComponent.cs
2022-02-02 14:35:40 +11:00

20 lines
361 B
C#

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