13 lines
297 B
TypeScript
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;
|
|
}
|
|
}
|