Implement base TurtleController and simple VolumeExcavationController
This commit is contained in:
9
lib/direction.lua
Normal file
9
lib/direction.lua
Normal file
@ -0,0 +1,9 @@
|
||||
---@enum Direction
|
||||
local Direction = {
|
||||
NORTH = 0,
|
||||
EAST = 1,
|
||||
SOUTH = 2,
|
||||
WEST = 3
|
||||
}
|
||||
|
||||
return Direction
|
||||
Reference in New Issue
Block a user