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.

31 lines
358B

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