Skip to content

Instantly share code, notes, and snippets.

@ekelokorpi
Created March 24, 2018 20:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ekelokorpi/e2f26e5d9d33e7b1d60d653fd87552f2 to your computer and use it in GitHub Desktop.
Save ekelokorpi/e2f26e5d9d33e7b1d60d653fd87552f2 to your computer and use it in GitHub Desktop.
game.createClass('A', {
init: function() {
this.obj = new game.B();
}
});
game.createClass('B', {
test: 'hello'
});
var a = new game.A();
console.log(a.obj.test); // hello
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment