Remove Debug Print

This commit is contained in:
Marty Oehme 2018-07-24 13:38:00 +02:00
parent 5c2efd2fd9
commit 0384518b02
1 changed files with 0 additions and 1 deletions

View File

@ -24,7 +24,6 @@ class Game {
// In-World Logic Updates
void update([num dt]) {
Point next = isRandom ? nextPosRandom() : nextPosOrdered(_curPos);
print(_curPos.toString());
grid[next.y][next.x] =
new Color(rng.nextInt(255), rng.nextInt(255), rng.nextInt(255));
_curPos = next;