VoidShot/scripts/items.lua
Hannah-Dagemark e9da50897f Menu additions and Function
- Menu now has buttons
- Menu buttons will change color when hovered over
- Menu "start" button now changes stage to the Game Test
2023-09-04 14:17:48 +02:00

8 lines
No EOL
159 B
Lua

function item.create(type, commands)
local object = {}
for i = 1, #commands do
object[commands]
i = i + 1
end
return object
end