This repository has been archived on 2022-09-16. You can view files and clone it, but cannot push or open issues/pull-requests.
tlaternet-templates/src/music/player/background.js

13 lines
239 B
JavaScript

class Background {
constructor(display, audioManager) {
if (this.constructor === Background)
throw new Error("Cannot instantiate abstract class!");
}
start() {}
stop() {}
}
export default Background;