home *** CD-ROM | disk | FTP | other *** search
/ Champak 106 / Vol 106.iso / games / insuranc.swf / scripts / __Packages / Application.as next >
Encoding:
Text File  |  2010-04-12  |  470 b   |  25 lines

  1. class Application extends MovieClip
  2. {
  3.    static var bEasy = true;
  4.    function Application(root)
  5.    {
  6.       super();
  7.       root.__proto__ = this.__proto__;
  8.       root.__constructor__ = Application;
  9.       this = root;
  10.       this.init();
  11.    }
  12.    static function main(root)
  13.    {
  14.       var _loc1_ = new Application(root);
  15.    }
  16.    static function tr()
  17.    {
  18.       trace(arguments.join(" : "));
  19.    }
  20.    function init(Void)
  21.    {
  22.       this.stop();
  23.    }
  24. }
  25.