50 lines
1.2 KiB
TypeScript
50 lines
1.2 KiB
TypeScript
// Learn TypeScript:
|
|
// - [Chinese] https://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] https://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] https://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
|
|
|
|
|
|
export default class LevelConfigData {
|
|
|
|
public id:number = 1;
|
|
|
|
public name:string = "";
|
|
|
|
public level:number = 0;
|
|
|
|
public uplevel:number = 0;
|
|
|
|
public stars:number = 0;
|
|
|
|
public meteor:string = "";
|
|
|
|
public movMeteor:string = "";
|
|
|
|
public blackHole:number = 0;
|
|
|
|
public speedUp:string = "";
|
|
|
|
public hotWheels:string = "";
|
|
|
|
public magnet:string = "";
|
|
|
|
public newContent:string = "";
|
|
|
|
public contentType:number = 0;
|
|
|
|
public ailv1:number = 0;
|
|
|
|
public ailv2:number = 0;
|
|
|
|
public ailv3:number = 0;
|
|
|
|
public ailv4:number = 0;
|
|
|
|
|
|
}
|