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.
|
- #include "app.hpp"
-
-
- namespace rack {
-
- std::string gApplicationName = "VCV Rack";
- std::string gApplicationVersion =
- #ifdef VERSION
- TOSTRING(VERSION);
- #else
- "";
- #endif
- std::string gApiHost = "https://api.vcvrack.com";
- // std::string gApiHost = "http://localhost:8081";
-
- RackWidget *gRackWidget = NULL;
- Toolbar *gToolbar = NULL;
- RackScene *gRackScene = NULL;
-
-
- void sceneInit() {
- gRackScene = new RackScene();
- gScene = gRackScene;
- }
-
- void sceneDestroy() {
- delete gScene;
- gScene = NULL;
- }
-
-
- } // namespace rack
|