aboutsummaryrefslogtreecommitdiff
path: root/source/PlayState.hx
diff options
context:
space:
mode:
Diffstat (limited to 'source/PlayState.hx')
-rw-r--r--source/PlayState.hx19
1 files changed, 19 insertions, 0 deletions
diff --git a/source/PlayState.hx b/source/PlayState.hx
new file mode 100644
index 0000000..5cc2a8b
--- /dev/null
+++ b/source/PlayState.hx
@@ -0,0 +1,19 @@
+package;
+
+import core.MenuState;
+import flixel.FlxG;
+import flixel.FlxState;
+
+class PlayState extends FlxState
+{
+ override public function create()
+ {
+ super.create();
+ FlxG.switchState(new MenuState());
+ }
+
+ override public function update(dt:Float)
+ {
+ super.update(dt);
+ }
+}