commit 04a60f9890dbaa277e5728b330dcd98eff621340 Author: Maurice L. Date: Sat May 16 02:34:27 2026 +0200 Added slotmachine diff --git a/slotmachine.cpp b/slotmachine.cpp new file mode 100644 index 0000000..5baaf25 --- /dev/null +++ b/slotmachine.cpp @@ -0,0 +1,20 @@ +enum class MachineState { + Startup, + Ready, + PendigPayment, + Release, + Unlock, + Shutdown +} + +// SIMULATING HARDWARE-REQUESTS + +int main() { + MachineState state = MachineState.Startup; + while(true) { + state = MachineState.Ready; + + std::string = std::cin << "Pick your slot" << std::endl; + } + return 0; +} \ No newline at end of file