16 lines
295 B
Lua
16 lines
295 B
Lua
-- Inventory object class
|
|
|
|
inventory_object = inherit_table(game_object)
|
|
|
|
function inventory_object:on_init()
|
|
game_object.on_init(self)
|
|
end
|
|
|
|
function inventory_object:on_shutdown()
|
|
game_object.on_shutdown(self)
|
|
end
|
|
|
|
function inventory_object:on_update(dt)
|
|
game_object.on_update(self, dt)
|
|
end
|