Files
tbd-station-14/Content.Shared/Vapor/SharedVaporComponent.cs
2021-06-09 22:19:39 +02:00

21 lines
374 B
C#

#nullable enable
using System;
using Robust.Shared.GameObjects;
using Robust.Shared.Serialization;
namespace Content.Shared.Vapor
{
public class SharedVaporComponent : Component
{
public override string Name => "Vapor";
}
[Serializable, NetSerializable]
public enum VaporVisuals
{
Rotation,
Color,
State,
}
}