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