2019-03-10 17:59:18 -04:00
|
|
|
export default class DisplayManager {
|
2018-10-31 12:00:31 -04:00
|
|
|
//--------------------------
|
|
|
|
// constructor
|
|
|
|
//--------------------------
|
2019-03-10 17:59:18 -04:00
|
|
|
|
|
|
|
//TODO: Flip to unified structure defined in BMG, brah
|
2018-10-31 12:00:31 -04:00
|
|
|
constructor() {
|
2019-03-10 17:59:18 -04:00
|
|
|
var self = this;
|
|
|
|
this.start();
|
|
|
|
}
|
|
|
|
start() {
|
|
|
|
console.log('YAAAAASSSS');
|
2018-10-31 12:00:31 -04:00
|
|
|
}
|
|
|
|
//--------------------------
|
|
|
|
// methods
|
|
|
|
//--------------------------
|
2019-03-10 17:59:18 -04:00
|
|
|
|
2018-10-31 12:00:31 -04:00
|
|
|
//--------------------------
|
|
|
|
// event handlers
|
|
|
|
//--------------------------
|
|
|
|
}
|