Back to project page andQuery.
The source code is released under:
MIT License
If you think the Android project andQuery listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.codingg.andquery.Animation; //from w ww . ja va2 s . co m /** * Created by sanjav on 1/24/15. */ public class GameLoop implements Runnable { @Override public void run() { while (true) { Animation.loop(); try { Thread.sleep(17); } catch (InterruptedException e) { e.printStackTrace(); } } } }