2021-11-12 19:00:39 +00:00
|
|
|
using System;
|
2021-06-09 22:19:39 +02:00
|
|
|
using Content.Shared.Solar;
|
2021-06-16 15:49:02 +01:00
|
|
|
using Content.Server.Solar.EntitySystems;
|
2021-11-23 18:19:08 +00:00
|
|
|
using Content.Server.UserInterface;
|
2021-02-11 01:13:03 -08:00
|
|
|
using Robust.Server.GameObjects;
|
2020-06-02 12:32:18 +01:00
|
|
|
using Robust.Shared.GameObjects;
|
|
|
|
|
using Robust.Shared.IoC;
|
2020-08-22 22:29:20 +02:00
|
|
|
using Robust.Shared.ViewVariables;
|
2021-11-12 19:00:39 +00:00
|
|
|
using Robust.Shared.Maths;
|
2020-06-02 12:32:18 +01:00
|
|
|
|
2021-06-09 22:19:39 +02:00
|
|
|
namespace Content.Server.Solar.Components
|
2020-06-02 12:32:18 +01:00
|
|
|
{
|
|
|
|
|
[RegisterComponent]
|
2021-11-23 18:19:08 +00:00
|
|
|
public class SolarControlConsoleComponent : Component
|
2020-06-02 12:32:18 +01:00
|
|
|
{
|
2021-06-16 15:49:02 +01:00
|
|
|
public override string Name => "SolarControlConsole";
|
2020-06-02 12:32:18 +01:00
|
|
|
}
|
|
|
|
|
}
|