Implement Engine Step Method

This commit is contained in:
Marty Oehme 2018-07-09 17:27:56 +02:00
parent 9030d31e97
commit ac9a7c7591
2 changed files with 5 additions and 2 deletions

View file

@ -60,6 +60,10 @@ class Engine {
void update() {
// print("updating");
if(!grid.update()) running = false;
void step() {
running = false;
_grid.update();
}
void render([num interp]) {