Source: view/viz/BaseExplanation.js

  1. /** @module */
  2. /**
  3. * Base Class for Showing an Explanation of Results
  4. * @param {Screen} screen
  5. * @constructor
  6. */
  7. export default function BaseExplanation() {
  8. const self = this
  9. self.enter = () => {
  10. }
  11. self.exit = () => {
  12. }
  13. self.update = function () {
  14. }
  15. self.render = function () {
  16. }
  17. }