19 lines
261 B
Lua
19 lines
261 B
Lua
mtprint("hello")
|
|
|
|
machine = add_machine(10, 10)
|
|
mtprint(machine.id)
|
|
machine.type = 2
|
|
mtprint(machine.type)
|
|
pos = machine.pos
|
|
machine.pos = pos
|
|
mtprint(pos.x)
|
|
machine.pos.x = 50
|
|
machine.storage[0] = 1
|
|
|
|
function on_tick(game)
|
|
|
|
end
|
|
|
|
function on_frame(game)
|
|
|
|
end
|