First demo commit.

This commit is contained in:
bakpakin
2015-04-27 14:12:11 +08:00
commit a63329422d
57 changed files with 5201 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
local UpdateSystem = tiny.processingSystem(class "UpdateSystem")
UpdateSystem.filter = tiny.requireAll("update")
function UpdateSystem:process(e, dt)
e:update(dt)
end
return UpdateSystem