Feat: Multiplayer sessions added using CRUD database.
This commit is contained in:
20
static/js/pages/mixin.js
Normal file
20
static/js/pages/mixin.js
Normal file
@@ -0,0 +1,20 @@
|
||||
|
||||
|
||||
export default class MixinPage {
|
||||
constructor(pageCurrent) {
|
||||
this.page = pageCurrent;
|
||||
}
|
||||
|
||||
initialize() {
|
||||
Utils.consoleLogIfNotProductionEnvironment('hookup start for ', this.page.hash);
|
||||
this.hookupFilters();
|
||||
this.hookupLocalStorage();
|
||||
}
|
||||
hookupFilters() {
|
||||
}
|
||||
hookupLocalStorage() {
|
||||
|
||||
}
|
||||
|
||||
leave() {}
|
||||
}
|
||||
Reference in New Issue
Block a user