SuitConfig.ts
310 Bytes
// Generated by Editor
export interface ISuitConfig {
id: number;
clothingType: number;
clothingId: number;
suitId: number;
clothingName: string;
unlockCondition: string;
isUnlock: boolean;
}
export let suitConfig: { name: string, type?: ISuitConfig } = {
name: 'SuitConfig'
}