diff --git a/tgui-next/packages/tgui/interfaces/AtmosRelief.js b/tgui-next/packages/tgui/interfaces/AtmosRelief.js new file mode 100644 index 00000000..4654ec65 --- /dev/null +++ b/tgui-next/packages/tgui/interfaces/AtmosRelief.js @@ -0,0 +1,54 @@ +import { useBackend } from '../backend'; +import { Button, LabeledList, NumberInput, Section } from '../components'; + +export const AtmosRelief = props => { + const { act, data } = useBackend(props); + return ( +
+ + + act('open_pressure', { + open_pressure: value, + })} /> +
+ ); +}; diff --git a/tgui-next/packages/tgui/routes.js b/tgui-next/packages/tgui/routes.js index efe1b8c7..d80b25df 100644 --- a/tgui-next/packages/tgui/routes.js +++ b/tgui-next/packages/tgui/routes.js @@ -88,6 +88,7 @@ import { ThermoMachine } from './interfaces/ThermoMachine'; import { TurbineComputer } from './interfaces/TurbineComputer'; import { VaultController } from './interfaces/VaultController'; import { Wires } from './interfaces/Wires'; +import { AtmosRelief } from './interfaces/AtmosRelief'; const ROUTES = { achievements: { @@ -130,6 +131,10 @@ const ROUTES = { component: () => AtmosPump, scrollable: false, }, + atmos_relief: { + component: () => AtmosRelief, + scrollable: false, + }, bepis: { component: () => Bepis, scrollable: false,