22 lines
860 B
TypeScript
22 lines
860 B
TypeScript
// Learn TypeScript:
|
|
// - [Chinese] http://docs.cocos.com/creator/manual/zh/scripting/typescript.html
|
|
// - [English] http://www.cocos2d-x.org/docs/creator/manual/en/scripting/typescript.html
|
|
// Learn Attribute:
|
|
// - [Chinese] http://docs.cocos.com/creator/manual/zh/scripting/reference/attributes.html
|
|
// - [English] http://www.cocos2d-x.org/docs/creator/manual/en/scripting/reference/attributes.html
|
|
// Learn life-cycle callbacks:
|
|
// - [Chinese] http://docs.cocos.com/creator/manual/zh/scripting/life-cycle-callbacks.html
|
|
// - [English] http://www.cocos2d-x.org/docs/creator/manual/en/scripting/life-cycle-callbacks.html
|
|
|
|
const {ccclass} = cc._decorator;
|
|
|
|
@ccclass
|
|
export default class PlayerData {
|
|
nickName:string = "";
|
|
avatarUrl:string = "";
|
|
score:string = "";
|
|
isSelf:boolean = false;
|
|
rank:number = 0;
|
|
weekDate:string = "";
|
|
}
|