Esempio n. 1
0
 public void step(int w, int h) {
   setSleepAmount(4000);
   theT = new Character(theC = ((char) ((int) theC + 1)));
   theR = new Character((char) ((int) theC + 1));
   if (theR.compareTo(new Character('z')) == 0) {
     theC = 'A';
   }
 }