ConceptCreator/app/LoadModel.ts

13 lines
297 B
TypeScript
Raw Normal View History

2024-02-17 08:45:22 +01:00
import {ModelComponentType} from "../src/app/game-model/ModelComponentType";
export class LoadModel {
jsonString: string
modelType: ModelComponentType
constructor(jsonString: string, modelType: ModelComponentType) {
this.jsonString = jsonString;
this.modelType = modelType;
}
}