├── LICENSE ├── README.md ├── gfx ├── bg.h ├── knob.h ├── plugin.png └── thelay.png ├── libs ├── README.md ├── ikigui.h ├── ikigui_lin.h ├── ikigui_win.h ├── rst.h ├── rst_framework.c └── rst_framework_head.c └── plug_code └── delay_fx.c /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logos-maker/VST2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logos-maker/VST2/HEAD/README.md -------------------------------------------------------------------------------- /gfx/bg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logos-maker/VST2/HEAD/gfx/bg.h -------------------------------------------------------------------------------- /gfx/knob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logos-maker/VST2/HEAD/gfx/knob.h -------------------------------------------------------------------------------- /gfx/plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logos-maker/VST2/HEAD/gfx/plugin.png -------------------------------------------------------------------------------- /gfx/thelay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logos-maker/VST2/HEAD/gfx/thelay.png -------------------------------------------------------------------------------- /libs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logos-maker/VST2/HEAD/libs/README.md -------------------------------------------------------------------------------- /libs/ikigui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logos-maker/VST2/HEAD/libs/ikigui.h -------------------------------------------------------------------------------- /libs/ikigui_lin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logos-maker/VST2/HEAD/libs/ikigui_lin.h -------------------------------------------------------------------------------- /libs/ikigui_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logos-maker/VST2/HEAD/libs/ikigui_win.h -------------------------------------------------------------------------------- /libs/rst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logos-maker/VST2/HEAD/libs/rst.h -------------------------------------------------------------------------------- /libs/rst_framework.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logos-maker/VST2/HEAD/libs/rst_framework.c -------------------------------------------------------------------------------- /libs/rst_framework_head.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logos-maker/VST2/HEAD/libs/rst_framework_head.c -------------------------------------------------------------------------------- /plug_code/delay_fx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logos-maker/VST2/HEAD/plug_code/delay_fx.c --------------------------------------------------------------------------------