Output to file

This commit is contained in:
2022-02-16 00:17:19 +03:00
parent d47a4c634e
commit d5d5e5d59c
9 changed files with 82 additions and 15 deletions

11
items/Primary.js Normal file
View File

@@ -0,0 +1,11 @@
const Item = require('./Item')
module.exports = class Primary extends Item {
constructor (name) {
super(name)
this.addPart('barrel')
this.addPart('receiver')
this.addPart('stock')
}
}