1

Play music when excavating

This commit is contained in:
2025-10-06 23:50:29 +02:00
parent b5cb13732e
commit b71267bf42
5 changed files with 165 additions and 56 deletions

View File

@ -1,15 +1,18 @@
local TestingController = require("controller.testing_controller")
local ExcavationController = require("controller.excavation_controller")
local AudioController = require("controller.audio_controller")
local controllers = {
TestingController:Create(),
ExcavationController:Create(),
AudioController:Create(),
}
print("Multiple controllers are available:")
print("1: Testing Mode")
print("2: Volume Excavation")
print("3: Play Bangarang")
local choice = 0
while choice < 1 or choice > #controllers do