aboutsummaryrefslogtreecommitdiff
path: root/entities/eniity.lua
blob: 12246498290cb8f9bd1c90870aa4d0ec8994c8d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Class = require("libs.hump.class")

Entity = Class {
    init = function(self)
    end
}

Entity:draw()
end

Entity:update(dt)
end

return Entity