From f5e60ac6142f5f3d71f5a6edc581094df840f12e Mon Sep 17 00:00:00 2001 From: Indrajith K L Date: Tue, 22 Mar 2022 02:20:02 +0530 Subject: Initial Commit * Basic Entity System Implemented --- source/PlayState.hx | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 source/PlayState.hx (limited to 'source/PlayState.hx') 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); + } +} -- cgit v1.2.3