17 lines
221 B
JavaScript
17 lines
221 B
JavaScript
cc.Class({
|
|
extends: cc.Component,
|
|
|
|
properties: {
|
|
gameui: {
|
|
default: null,
|
|
type: cc.Node,
|
|
},
|
|
},
|
|
|
|
onLoad() {
|
|
this.gameuisc = this.gameui.getComponent('teachGamePanel');
|
|
},
|
|
|
|
start() {},
|
|
});
|