Guest User

Untitled

a guest
Nov 16th, 2013
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. package;
  2.  
  3. import flash.display.Sprite;
  4. import flash.Lib;
  5. import debugger.HaxeRemote;
  6.  
  7. /**
  8. * ...
  9. * @author gordev
  10. */
  11. class Debugger_test extends Sprite {
  12.  
  13. private var i:Int = 0;
  14.  
  15. public function new () {
  16. new HaxeRemote(true, "127.0.1.1", 6972);
  17. super ();
  18. i = 1;
  19. trace("ololo");
  20. i = 5;
  21. }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment