Files
OldThink/Content.Server/GameObjects/Components/Chemistry/GlassBeakerComponent.cs

11 lines
239 B
C#
Raw Normal View History

2020-12-04 11:37:55 +01:00
using Robust.Shared.GameObjects;
namespace Content.Server.GameObjects.Components.Chemistry
{
[RegisterComponent]
public class GlassBeakerComponent : Component
{
public override string Name => "GlassBeaker";
}
}