Crew Console + Operating Computer tgui-next (#47475)

* Crew Console + Operating Computer

build

near finished

no health vars

final crew console

operating computer

rebuild

less shitcodey

* updating fix
This commit is contained in:
Rob Bailey
2019-11-02 13:24:02 -07:00
committed by AnturK
parent 6e238392bf
commit b2be5e5dca
9 changed files with 325 additions and 23 deletions

View File

@@ -25,6 +25,7 @@ import { Cryo } from './interfaces/Cryo';
import { DisposalUnit } from './interfaces/DisposalUnit';
import { KitchenSink } from './interfaces/KitchenSink';
import { Mint } from './interfaces/Mint';
import { OperatingComputer } from './interfaces/OperatingComputer';
import { PortableGenerator } from './interfaces/PortableGenerator';
import { ShuttleManipulator } from './interfaces/ShuttleManipulator';
import { SmartVend } from './interfaces/SmartVend';
@@ -129,6 +130,10 @@ const ROUTES = {
component: () => Crayon,
scrollable: true,
},
crew: {
component: () => CrewConsole,
scrollable: true,
},
cryo: {
component: () => Cryo,
scrollable: false,
@@ -153,6 +158,10 @@ const ROUTES = {
component: () => SmartVend,
scrollable: true,
},
operating_computer: {
component: () => OperatingComputer,
scrollable: true,
},
thermomachine: {
component: () => ThermoMachine,
scrollable: false,