Remove Debug Print
This commit is contained in:
parent
5c2efd2fd9
commit
0384518b02
1 changed files with 0 additions and 1 deletions
|
@ -24,7 +24,6 @@ class Game {
|
||||||
// In-World Logic Updates
|
// In-World Logic Updates
|
||||||
void update([num dt]) {
|
void update([num dt]) {
|
||||||
Point next = isRandom ? nextPosRandom() : nextPosOrdered(_curPos);
|
Point next = isRandom ? nextPosRandom() : nextPosOrdered(_curPos);
|
||||||
print(_curPos.toString());
|
|
||||||
grid[next.y][next.x] =
|
grid[next.y][next.x] =
|
||||||
new Color(rng.nextInt(255), rng.nextInt(255), rng.nextInt(255));
|
new Color(rng.nextInt(255), rng.nextInt(255), rng.nextInt(255));
|
||||||
_curPos = next;
|
_curPos = next;
|
||||||
|
|
Loading…
Reference in a new issue