package hhn.temp.project; import java.util.Scanner; public class UserCommands { Scanner scanner; public void start() { boolean close = false; // scanner = new Scanner(System.in); // while (!close) { // System.out.println("Type '?' or 'help' for a list of commands"); // System.out.println("Please enter a command:"); // String input = scanner.nextLine(); // handleInput(input); // } // scanner.close(); } public void handleInput(String input) { } public Scanner getScanner() { return scanner; } }