hollow-knight-completion-check/src/js/page.js
2021-12-07 11:03:05 +01:00

12 lines
No EOL
268 B
JavaScript

/* This file will contain all classes and functions for creating things on the page */
export class ItemListBox {
constructor() {
console.log("ItemListBox is created");
}
assignElements(worldData) {
this.worldData = worldData; /* array of .id */
}
}