pubgv3/assets/scripts/chat/richclick.js
zhuguoqing ff550d5d6a init
2022-05-22 10:32:02 +08:00

41 lines
1.0 KiB
JavaScript

var SDKManage = require("SDKManage")
var NetManage = require("NetManage")
var playerData = require("playerData")
var gameConfig = require("gameConfig")
var Main = require("Main");
cc.Class({
extends: cc.Component,
properties: {
// foo: {
// // ATTRIBUTES:
// default: null, // The default value will be used only when the component attaching
// // to a node for the first time
// type: cc.SpriteFrame, // optional, default is typeof default
// serializable: true, // optional, default is true
// },
// bar: {
// get () {
// return this._bar;
// },
// set (value) {
// this._bar = value;
// }
// },
},
// LIFE-CYCLE CALLBACKS:
// onLoad () {},
start () {
},
clickbattle(){
console.log(this.node.roomid)
},
// update (dt) {},
});