diff options
author | Indrajith K L | 2022-03-22 02:20:02 +0530 |
---|---|---|
committer | Indrajith K L | 2022-03-22 02:20:02 +0530 |
commit | f5e60ac6142f5f3d71f5a6edc581094df840f12e (patch) | |
tree | 68b7071b9862082ce3d0943b8b1f76744e411642 /source/PlayState.hx | |
download | YEAD-haxe-f5e60ac6142f5f3d71f5a6edc581094df840f12e.tar.gz YEAD-haxe-f5e60ac6142f5f3d71f5a6edc581094df840f12e.tar.bz2 YEAD-haxe-f5e60ac6142f5f3d71f5a6edc581094df840f12e.zip |
Initial Commit
* Basic Entity System Implemented
Diffstat (limited to 'source/PlayState.hx')
-rw-r--r-- | source/PlayState.hx | 19 |
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); + } +} |