Skip to content

Instantly share code, notes, and snippets.

View MartinBspheroid's full-sized avatar

Martin Blasko MartinBspheroid

View GitHub Profile
#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;
#pragma once
#include <Windows.h>
#include <string>
void openDirectory(std::string path) {
std::string cmd = "explorer " + path;
system(cmd.c_str());
}