You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
290B

  1. #pragma once
  2. #include "common.hpp"
  3. namespace rack {
  4. struct Scene;
  5. struct Engine;
  6. namespace event {
  7. struct Context;
  8. }
  9. struct Context {
  10. bool devMode = false;
  11. event::Context *event = NULL;
  12. Scene *scene = NULL;
  13. Engine *engine = NULL;
  14. };
  15. Context *context();
  16. } // namespace rack