Develop #4

Merged
wariosolis merged 35 commits from develop into master 2017-01-04 00:04:34 +01:00
Showing only changes of commit 6107811f19 - Show all commits
+24
View File
@@ -0,0 +1,24 @@
arc_path = 'assets/scripts/vendor/arc/'
require(arc_path .. 'arc')
_navi = require(arc_path .. 'navi')
local messages = {}
function messages.load(game)
msg = _navi:new('Hello world!')
end
function messages.update(dt)
arc.check_keys(dt)
end
function messages.draw()
arc.clear_key()
msg:play(0,0)
end
function messages.keypressed(k)
arc.set_key(k)
end
return messages