Originally Posted by
donaldmax
i will look into the scanner class. does anyone know how to make a ball (uses thread) to move a bit faster every 20 seconds?
If you're using a timer in the thread, reduce the timer delay; if you're just sleeping the thread in a loop, reduce the sleep time.
Incidentally, when posting code, please use the Java Naming Conventions - class names begin with an uppercase letter, method and variable names begin with a lowercase letter. If you don't follow the convention, people will be confused reading your code, and people like me won't read it at all.