mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-17 21:53:05 +00:00
16 lines
343 B
Plaintext
16 lines
343 B
Plaintext
/*!
|
|
* Copyright (c) 2020 Aleksej Komarov
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
/**
|
|
* tgui state: always_state
|
|
*
|
|
* Always grants the user UI_INTERACTIVE. Period.
|
|
**/
|
|
|
|
GLOBAL_DATUM_INIT(tgui_always_state, /datum/tgui_state/always_state, new)
|
|
|
|
/datum/tgui_state/always_state/can_use_topic(src_object, mob/user)
|
|
return STATUS_INTERACTIVE
|