gruppe06-hufflepuff-projekt.../src/SystemInput.java

22 lines
311 B
Java
Raw Normal View History

import java.util.Scanner;
public class SystemInput {
private Scanner scanner;
public SystemInput() {
scanner = new Scanner("");
}
/**
* Method: CheckForInput
*/
public String[] checkForInput() {
return new String[] {
"Test"
};
}
}