forked from Simnation/Main
ed
This commit is contained in:
parent
f57a27b8df
commit
4b4bb3b0ab
76 changed files with 6389 additions and 0 deletions
16
resources/[carscripts]/jg-textui/client.lua
Normal file
16
resources/[carscripts]/jg-textui/client.lua
Normal file
|
@ -0,0 +1,16 @@
|
|||
function DrawText(text)
|
||||
SendNUIMessage({
|
||||
type = 'show',
|
||||
text = text
|
||||
})
|
||||
end
|
||||
|
||||
exports('DrawText', DrawText)
|
||||
|
||||
function HideText()
|
||||
SendNUIMessage({
|
||||
type = 'hide'
|
||||
})
|
||||
end
|
||||
|
||||
exports('HideText', HideText)
|
Loading…
Add table
Add a link
Reference in a new issue