GTASA / moonloader /(for developers) /mimgui-examples /mimgui-hello-world.lua
nttl050611's picture
Upload 2089 files
d7c5875 verified
Raw
History Blame Contribute Delete
258 Bytes
script_name 'mimgui hello world'
local imgui = require 'mimgui'
imgui.OnFrame(
function() -- condition
return isPlayerPlaying(PLAYER_HANDLE)
end,
function() -- render frame
imgui.Begin('mimgui')
imgui.Text('Hello, World!')
imgui.End()
end)