tibia-client/modules/otclient/otclient.lua

14 lines
277 B
Lua

OTClient = { }
-- TODO: load and save configurations
function OTClient.init()
g_window.move({ x=220, y=220 })
g_window.resize({ width=800, height=600 })
g_window.setTitle('OTClient')
g_window.setIcon('otcicon.png')
return true
end
function OTClient.terminate()
end