Advertisement
nio_kasgami

test

May 10th, 2016
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /*:
  2.  * music box
  3. */
  4. var __extends = (this && this.__extends) || function (d, b) {
  5.     for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
  6.     function __() { this.constructor = d; }
  7.     d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
  8. };
  9. var Scene_musicBox = (function (_super) {
  10.     __extends(Scene_musicBox, _super);
  11.     function Scene_musicBox() {
  12.         _super.prototype
  13.             .
  14.                 //this.initialize();
  15.         ;
  16.         //this.initialize();
  17.     }
  18.     Scene_musicBox.prototype.initialize = function () {
  19.         _super.prototype.initialize.call(this);
  20.     };
  21.     Scene_musicBox.prototype.create = function () {
  22.         _super.prototype.create.call(this);
  23.         //   this.createWindow();
  24.     };
  25.     Scene_musicBox.prototype.createWindow = function () {
  26.         //    this._window = new MusicWindow();
  27.     };
  28.     Scene_musicBox.prototype.start = function () {
  29.         _super.prototype.start.call(this);
  30.     };
  31.     return Scene_musicBox;
  32. }(Scene_MenuBase));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement