This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include "IPlugEffect.h" | |
| #include "IPlug_include_in_plug_src.h" | |
| #include "IControls.h" | |
| constexpr auto CN = 30; | |
| struct Cable | |
| { | |
| IVec2 pos1; | |
| IVec2 pos2; | |
| IColor color; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #pragma once | |
| #include <Windows.h> | |
| #include <string> | |
| void openDirectory(std::string path) { | |
| std::string cmd = "explorer " + path; | |
| system(cmd.c_str()); | |
| } |
OlderNewer