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
301B

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