/
githubmirror
/
vgstation13
Обзор
Документация
Войти
/
githubmirror
/
vgstation13
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
Bleeding-Edge
code/modules/html_interface/RCD/RCD.dm
26 строк
870 B
CrazyAmphibian
RPD immitation TGUI (#35977)
24 фев 2024, 23:14
Не верифицирован
24 фев 2024, 23:14
e0ad95e
Код
Авторство
О чём код?
/* RCD UI style. N3X15 wrote the stylesheet (originally RPD stylesheet) Made into a htmli datum by PJB3005 */ /datum/html_interface/rcd default_html_file = 'html_interface_no_bootstrap.html' /datum/html_interface/rcd/New() . = ..() head += "<link rel='stylesheet' type='text/css' href='nanotrasen.css'>" head += "<link rel='stylesheet' type='text/css' href='RCD.css'>" /datum/html_interface/rcd/registerResources() register_asset("RCD.css", 'RCD.css') register_asset("nanotrasen.css", 'code/modules/html_interface/nanotrasen/nanotrasen.css') //DON'T YOU DARE MOVE THIS FILE //Send the icons. for(var/path in typesof(/datum/rcd_schematic) - /datum/rcd_schematic) var/datum/rcd_schematic/C = new path() C.register_assets() /datum/html_interface/rcd/sendAssets(var/client/client) send_asset(client, "nanotrasen.css") . = send_asset(client, "RCD.css")