hollow-knight-silksong-comp.../src/js/classes.js
2022-01-19 20:02:09 +01:00

12 lines
No EOL
222 B
JavaScript

/* This file will contain all classes */
export class ItemListBox {
constructor() {
console.log("ItemListBox is created");
}
assignElements(worldData) {
this.worldData = worldData; /* array of .id */
}
}