Remove Debug Print

This commit is contained in:
Marty Oehme 2018-07-24 13:38:00 +02:00
parent 5c2efd2fd9
commit 0384518b02

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;