rename settype array

This commit is contained in:
Dank074 2021-08-03 02:22:41 -05:00
parent ac3bd7fbb0
commit 759bc72ceb
2 changed files with 3 additions and 3 deletions

View File

@ -4,5 +4,5 @@ import { IFigureDataSetType } from './IFigureDataSetType';
export interface IFigureData
{
palettes?: IFigureDataPalette[];
sets?: IFigureDataSetType[];
setTypes?: IFigureDataSetType[];
}

View File

@ -39,9 +39,9 @@ export class FigureDataMapper extends Mapper
{
if(xml.sets.length)
{
output.sets = [];
output.setTypes = [];
FigureDataMapper.mapFigureDataSetTypes(xml.sets, output.sets);
FigureDataMapper.mapFigureDataSetTypes(xml.sets, output.setTypes);
}
}
}