More easing types, cleanup

This commit is contained in:
Ondřej Hruška
2014-03-30 20:11:25 +02:00
parent 5c261c4513
commit e2e5576664
29 changed files with 531 additions and 480 deletions
@@ -4,7 +4,6 @@ package mightypork.rogue.util;
import static org.lwjgl.opengl.GL11.*;
import mightypork.rogue.textures.TextureManager;
import mightypork.rogue.textures.TxQuad;
import mightypork.utils.math.Calc.Deg;
import mightypork.utils.math.color.HSV;
import mightypork.utils.math.color.RGB;
import mightypork.utils.math.coord.Coord;
+3 -1
View File
@@ -7,7 +7,9 @@ package mightypork.rogue.util;
* @author MightyPork
*/
public class Utils {
public static Thread runAsThread(Runnable r) {
public static Thread runAsThread(Runnable r)
{
Thread t = new Thread(r);
t.start();
return t;