8 lines
185 B
TypeScript
8 lines
185 B
TypeScript
import { Item } from "./item";
|
|
|
|
export class Gold extends Item {
|
|
constructor(id: number, insuranceValue: number, public weight: number) {
|
|
super(id, insuranceValue);
|
|
}
|
|
}
|