1
0
Fork 0
forked from Simnation/Main
Main/resources/[jobs]/[mechanic]/jg-textui/client.lua

17 lines
216 B
Lua
Raw Normal View History

2025-06-07 08:51:21 +02:00
function DrawText(text)
SendNUIMessage({
type = 'show',
text = text
})
end
exports('DrawText', DrawText)
function HideText()
SendNUIMessage({
type = 'hide'
})
end
exports('HideText', HideText)