ConceptCreator/src/app/project/game-model/inventory/ItemProperty.ts
Sebastian Böckelmann f70328e332
All checks were successful
E2E Testing / test (push) Successful in 1m37s
Visualize ItemProperties in Editor
2024-04-20 07:59:24 +02:00

13 lines
313 B
TypeScript

export class ItemProperty {
propertyName: string
propertyDescription: string
property: number
constructor(propertyName: string, propertyDescription: string, property: number) {
this.propertyName = propertyName;
this.propertyDescription = propertyDescription;
this.property = property;
}
}