squidGame/tgx-games-config/interface/IJobCfg.ts

35 lines
439 B
TypeScript
Raw Permalink Normal View History

2025-02-07 10:49:34 +08:00
export interface IJobCfg {
/**
*ID
*/
id:number,
/**
*
*/
occupationName:string,
/**
*
*/
occupationDescribe:string,
/**
*
*/
occupationDescribePlus:string,
/**
*
*/
jobLevel:number,
/**
*ID
*/
effectId:number[],
/**
*
*/
belongArms:number[],
/**
*
*/
occupationIcon:string,
}