mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 02:16:05 +00:00
16 lines
344 B
Plaintext
16 lines
344 B
Plaintext
/*!
|
|
* Copyright (c) 2021 Arm A. Hammer
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
/**
|
|
* tgui state: never_state
|
|
*
|
|
* Always closes the UI, no matter what. See the ui_state in religious_tool.dm to see an example
|
|
*/
|
|
|
|
var/datum/ui_state/never_state/never_state = new
|
|
|
|
/datum/ui_state/never_state/can_use_topic(src_object, mob/user)
|
|
return UI_CLOSE
|