Slight formatting part 2
This commit is contained in:
parent
3c6cdda72d
commit
f583808681
2 changed files with 3 additions and 0 deletions
|
@ -16,6 +16,7 @@ public class Game {
|
||||||
|
|
||||||
static int tickRate = 60;
|
static int tickRate = 60;
|
||||||
static int SKIPTICKS = 1000 / tickRate;
|
static int SKIPTICKS = 1000 / tickRate;
|
||||||
|
|
||||||
static long SLEEPTIME = 0;
|
static long SLEEPTIME = 0;
|
||||||
static long NEXT = System.currentTimeMillis();
|
static long NEXT = System.currentTimeMillis();
|
||||||
|
|
||||||
|
|
|
@ -6,6 +6,7 @@ public class Player {
|
||||||
static int width1 = 200;
|
static int width1 = 200;
|
||||||
static int height1 = 200;
|
static int height1 = 200;
|
||||||
static int moveSpeed1 = 1;
|
static int moveSpeed1 = 1;
|
||||||
|
|
||||||
static boolean isAlive1 = true;
|
static boolean isAlive1 = true;
|
||||||
|
|
||||||
static int x2 = 500;
|
static int x2 = 500;
|
||||||
|
@ -13,6 +14,7 @@ public class Player {
|
||||||
static int width2 = 150;
|
static int width2 = 150;
|
||||||
static int height2 = 150;
|
static int height2 = 150;
|
||||||
static int moveSpeed2 = 2;
|
static int moveSpeed2 = 2;
|
||||||
|
|
||||||
static boolean isAlive2 = true;
|
static boolean isAlive2 = true;
|
||||||
|
|
||||||
static int speedModifier = 1;
|
static int speedModifier = 1;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue