Skip to content

Instantly share code, notes, and snippets.

@Colmea
Created January 16, 2016 17:26
Show Gist options
  • Save Colmea/7c12d7bd4aef9f1f7d02 to your computer and use it in GitHub Desktop.
Save Colmea/7c12d7bd4aef9f1f7d02 to your computer and use it in GitHub Desktop.
var __extends = (this && this.__extends) || function (d, b) {
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
define(["require", "exports", './GUIElement'], function (require, exports, GUIElement) {
var GUILayout = (function (_super) {
__extends(GUILayout, _super);
/**
* Constructor
* @param name layout name
* @param app App instance
*/
function GUILayout(name, app) {
_super.call(this, name, app);
}
}
[...]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment