new javax.swing.Timer(60, new ActionListener() {
public void actionPerformed(ActionEvent e) {
// /process stuff
for (int i = 0; i < EventQue.size(); i++) {
ClientEventOut c = EventQue.poll(); // check if allowed....
if (!(c == null))
c.modifyGameState(currentState);
}
currentState.tick();
}