inital support for hooks...

Currently the following hooks are available:
 - WinMapPre
 - WinMapPost
This commit is contained in:
Squibid 2025-11-21 23:28:40 -05:00
parent b45544c97a
commit b3322eeb90
Signed by: squibid
GPG key ID: BECE5684D3C4005D
7 changed files with 193 additions and 0 deletions

View file

@ -49,3 +49,9 @@ end
-- print("goodbye from my keymap")
-- end
-- })
mez.hook.add_hook("WinMapPre", {
callback = function()
print("hello world")
end
})