Delete TextUI.lua

This commit is contained in:
Benzo
2022-06-09 17:30:51 +02:00
committed by GitHub
parent 8458f8ea43
commit f6e515da10
-18
View File
@@ -1,18 +0,0 @@
local function TextUI(message, type)
SendNUIMessage({
action = 'show',
message = message or 'ESX-TextUI',
type = type or 'info'
})
end
local function HideUI()
SendNUIMessage({
action = 'hide'
})
end
exports('TextUI', TextUI)
exports('HideUI', HideUI)
RegisterNetEvent('ESX:TextUI', TextUI)
RegisterNetEvent('ESX:HideUI', HideUI)