-- 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