rename habit puzzle game again for testing

This commit is contained in:
2022-05-09 16:47:07 -04:00
parent 075fd49d8e
commit 2897e7c790
13 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
package;
import flixel.FlxG;
import flixel.FlxGame;
import openfl.display.Sprite;
class Main extends Sprite
{
public function new()
{
super();
addChild(new FlxGame(0, 0, HabitState, 1, 60, 60, true));
var t:HabitState = cast FlxG.state;
t.setModel(new HabitModel(Sys.args()[0]));
t.model.save();
}
}