Implement initial NetheriteController
This commit is contained in:
3
main.lua
3
main.lua
@ -1,15 +1,18 @@
|
||||
local TestingController = require("controller.testing_controller")
|
||||
local VolumeExcavationController = require("controller.volume_excavation_controller")
|
||||
local NetheriteController = require("controller.netherite_controller")
|
||||
|
||||
|
||||
local controllers = {
|
||||
TestingController:Create(),
|
||||
VolumeExcavationController:Create(),
|
||||
NetheriteController:Create(),
|
||||
}
|
||||
|
||||
print("Multiple controllers are available:")
|
||||
print("1: Testing Mode")
|
||||
print("2: Volume Excavation")
|
||||
print("3: Netherite Excavation")
|
||||
|
||||
local choice = 0
|
||||
while choice < 1 or choice > #controllers do
|
||||
|
||||
Reference in New Issue
Block a user