-
Spieler-Tracker
How to use this:
- Walk up to screen on the right (It should be glowing)
- Click into the text area and enter ANY username you want!
- Press [Enter] on your keyboard, or click outside of the text box
- Your user has been added to the queue, which should be visible underneath the board.
Each user will display information for 20 seconds before switching to the next in queue. If there are no other usernames in the queue, then it will keep updating the current user,
package goddrinksjava;
/**
* The program GodDrinksJava implements an application that
* creates an empty simulated world with no meaning or purpose.
*/
public class GodDrinksJava {
public static void main(String[] args) {
Thing me = new Player("Me", 0, true, -1, false);
Thing you = new Player("You", 0, false, -1, false);
World world = new World(5);
world.addThing(me);
world.addThing(you);
world.startSimulation();
}
-
jerrydog hat keine Kreationen.