bring stuff

This commit is contained in:
2026-03-12 18:23:18 +03:00
parent 6185b99ca1
commit bd1cffdf7d
5 changed files with 94 additions and 16 deletions

View File

@@ -0,0 +1,15 @@
-- 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