mirror of
https://github.com/edubart/otclient.git
synced 2025-04-29 17:19:20 +02:00
14 lines
274 B
Lua
14 lines
274 B
Lua
Client = { }
|
|
|
|
-- TODO: load and save configurations
|
|
function Client.init()
|
|
g_window.move({ x=220, y=220 })
|
|
g_window.resize({ width=800, height=600 })
|
|
g_window.setTitle('OTClient')
|
|
g_window.setIcon('clienticon.png')
|
|
return true
|
|
end
|
|
|
|
function Client.terminate()
|
|
end
|