ConceptCreator/src/app/project/game-model/inventory/ItemGroup.ts
Sebastian Böckelmann 6eff107282
All checks were successful
E2E Testing / test (push) Successful in 1m34s
Delete Inherited Itemgroups and Introduce ItemgroupCharacteristicValue
2024-05-07 14:58:27 +02:00

9 lines
238 B
TypeScript

import {ModelComponent} from "../ModelComponent";
import {ItemGroupCharacteristic} from "./ItemgroupCharacteristic";
export abstract class ItemGroup extends ModelComponent {
itemGroupCharacteristics: ItemGroupCharacteristic[] = []
}