aboutsummaryrefslogtreecommitdiff
path: root/entities/player.lua
blob: cfb3d15696b9e91652e756f0fc90ce499ded4c37 (plain)
1
2
3
4
5
6
7
8
9
local Class = require("libs.hump.class");

Player = Class{
    init = function(self)
        print("Player Init")
    end
}

return Player