16 lines
262 B
Lua
16 lines
262 B
Lua
|
require("oct_utils")
|
||
|
require("termbox_defs")
|
||
|
|
||
|
text = oct_tb_sprite_new();
|
||
|
|
||
|
function oct_init()
|
||
|
text["shape"] = "THIS IS A TEST SERVER";
|
||
|
text["x"] = 50;
|
||
|
text["y"] = 10;
|
||
|
return OCT_TYPE_SERVER;
|
||
|
end
|
||
|
|
||
|
function oct_loop(key)
|
||
|
-- Do nothing, for now
|
||
|
end
|