Add Grid Size Input to Configuration Bar

Fixes #37
This commit is contained in:
Marty Oehme 2018-08-27 23:03:35 +02:00
parent 800c85d14f
commit b1221c7c84
3 changed files with 42 additions and 5 deletions

View file

@ -38,4 +38,6 @@ class ConfigurationService {
y = y ?? _es.engine.gridSize.y;
_es.engine.gridSize = Point(x, y);
}
Point<int> get gridSize => _es.engine.gridSize;
}