remove most top-level vardecls (#23946)

This commit is contained in:
warriorstar-orion
2024-02-05 17:12:08 -05:00
committed by GitHub
parent 60433a70b6
commit ed9842b730
24 changed files with 44 additions and 40 deletions
+4 -4
View File
@@ -119,28 +119,28 @@
* Associative list of JSON-encoded shared states that were set by
* tgui clients.
*/
/datum/var/list/tgui_shared_states
/* check_grep:ignore */ /datum/var/list/tgui_shared_states
/**
* global
*
* Tracks open UIs for a user.
*/
/mob/var/list/tgui_open_uis = list()
/* check_grep:ignore */ /mob/var/list/tgui_open_uis = list()
/**
* global
*
* Tracks open windows for a user.
*/
/client/var/list/tgui_windows = list()
/* check_grep:ignore */ /client/var/list/tgui_windows = list()
/**
* global
*
* TRUE if cache was reloaded by tgui dev server at least once.
*/
/client/var/tgui_cache_reloaded = FALSE
/* check_grep:ignore */ /client/var/tgui_cache_reloaded = FALSE
/**
* public