Files
tbd-station-14/Content.Server/GameObjects/Components/Chemistry/GlassBeakerComponent.cs
2020-12-04 12:05:15 +01:00

11 lines
239 B
C#

using Robust.Shared.GameObjects;
namespace Content.Server.GameObjects.Components.Chemistry
{
[RegisterComponent]
public class GlassBeakerComponent : Component
{
public override string Name => "GlassBeaker";
}
}