ConceptCreator/app/LoadModel.ts
Sebastian Böckelmann 78a264aa26
All checks were successful
E2E Testing / test (push) Successful in 1m28s
Load ScriptAccounts
2024-02-17 08:45:22 +01:00

13 lines
297 B
TypeScript

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;
}
}