You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
422 B
19 lines
422 B
13 years ago
|
local function placeholder() return true end
|
||
|
|
||
|
local turtle = {}
|
||
|
|
||
|
turtle.up = placeholder
|
||
|
turtle.down = placeholder
|
||
|
turtle.digUp = placeholder
|
||
|
turtle.digDown = placeholder
|
||
|
turtle.dig = placeholder
|
||
|
turtle.forward = placeholder
|
||
|
turtle.turnLeft = placeholder
|
||
|
turtle.turnRight = placeholder
|
||
|
turtle.detect = placeholder
|
||
|
turtle.getItemCount = placeholder
|
||
|
turtle.placeDown = placeholder
|
||
|
turtle.select = placeholder
|
||
|
|
||
|
return turtle
|