bring stuff
This commit is contained in:
15
data/scripts/objects/inventory_object.lua
Normal file
15
data/scripts/objects/inventory_object.lua
Normal 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
|
||||
Reference in New Issue
Block a user