tibia-client/modules/client/client.lua

14 lines
274 B
Lua
Raw Normal View History

2011-12-05 19:27:07 +01:00
Client = { }
-- TODO: load and save configurations
2011-12-05 19:27:07 +01:00
function Client.init()
g_window.move({ x=220, y=220 })
2011-12-07 01:31:55 +01:00
g_window.resize({ width=800, height=480 })
g_window.setTitle('OTClient')
2011-12-05 19:27:07 +01:00
g_window.setIcon('clienticon.png')
return true
end
2011-12-05 19:27:07 +01:00
function Client.terminate()
end