Slight formatting part 2

This commit is contained in:
Sebastian Cabrera 2019-04-30 22:02:11 -04:00
parent 3c6cdda72d
commit f583808681
2 changed files with 3 additions and 0 deletions

View file

@ -16,6 +16,7 @@ public class Game {
static int tickRate = 60;
static int SKIPTICKS = 1000 / tickRate;
static long SLEEPTIME = 0;
static long NEXT = System.currentTimeMillis();

View file

@ -6,6 +6,7 @@ public class Player {
static int width1 = 200;
static int height1 = 200;
static int moveSpeed1 = 1;
static boolean isAlive1 = true;
static int x2 = 500;
@ -13,6 +14,7 @@ public class Player {
static int width2 = 150;
static int height2 = 150;
static int moveSpeed2 = 2;
static boolean isAlive2 = true;
static int speedModifier = 1;