1

Implement base TurtleController and simple VolumeExcavationController

This commit is contained in:
2025-10-05 19:08:45 +02:00
commit 3bb3790f1b
8 changed files with 690 additions and 0 deletions

9
lib/direction.lua Normal file
View File

@ -0,0 +1,9 @@
---@enum Direction
local Direction = {
NORTH = 0,
EAST = 1,
SOUTH = 2,
WEST = 3
}
return Direction