Files
OldThink/Content.Shared/Vapor/SharedVaporComponent.cs

21 lines
409 B
C#
Raw Normal View History

using System;
using Robust.Shared.GameObjects;
using Robust.Shared.Serialization;
2021-06-09 22:19:39 +02:00
namespace Content.Shared.Vapor
{
public class SharedVaporComponent : Component
{
public override string Name => "Vapor";
public const string SolutionName = "vapor";
}
[Serializable, NetSerializable]
public enum VaporVisuals
{
Rotation,
Color,
State,
}
}