Advertisement
Keksicle

Main

Aug 17th, 2017
2,586
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Haxe 0.27 KB | None | 0 0
  1. package;
  2.  
  3. import openfl.display.Sprite;
  4. import openfl.Lib;
  5.  
  6. /**
  7.  * @author Reka Radics
  8.  */
  9. class Main extends Sprite
  10. {
  11.     // Start the game by launching the Menu stage
  12.     public function new()
  13.     {
  14.         super();
  15.         var newScreen = new Menu();
  16.         addChild(newScreen);
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement