package org.applet.game.framework.util; public class TimerUtil { public static final void sleep(long millis) { try { Thread.sleep(millis); } catch (InterruptedException e) { throw new RuntimeException(e); } } }