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.

24 lines
346B

  1. #include "app.hpp"
  2. namespace rack {
  3. std::string gApplicationName = "VCV Rack";
  4. std::string gApplicationVersion = TOSTRING(VERSION);
  5. std::string gApiHost = "http://api.vcvrack.com";
  6. RackWidget *gRackWidget = NULL;
  7. void sceneInit() {
  8. gScene = new RackScene();
  9. }
  10. void sceneDestroy() {
  11. delete gScene;
  12. gScene = NULL;
  13. }
  14. } // namespace rack