mirror of
https://github.com/duckietm/Nitro-V3.git
synced 2026-06-19 23:16:21 +00:00
12 lines
269 B
TypeScript
12 lines
269 B
TypeScript
import { IFigurePartSet } from '@nitrots/nitro-renderer';
|
|
|
|
export interface IAvatarEditorCategoryPartItem
|
|
{
|
|
id?: number;
|
|
partSet?: IFigurePartSet;
|
|
usesColor?: boolean;
|
|
maxPaletteCount?: number;
|
|
isClear?: boolean;
|
|
isSellableNotOwned?: boolean;
|
|
}
|