Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Datasets:
NMizu
/
moonloader
like
0
Languages:
Russian
License:
mit
Dataset card
Files
Files and versions
Community
cd27343
moonloader
/
mimgui-hello-world.lua
NMizu
Create mimgui-hello-world.lua
02923cf
verified
about 2 months ago
raw
Copy download link
history
blame
Safe
257 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
)