Mercurial > hg > tweakathon2ios
diff PresetView.h @ 6:92850a2b099c
set up preset slots from init file.
PD synth has metronome, recieves ticks but doesn't do anything with them.
author | Robert Tubb <rt300@eecs.qmul.ac.uk> |
---|---|
date | Fri, 17 Oct 2014 14:50:50 +0100 |
parents | |
children | af71bf84660f |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/PresetView.h Fri Oct 17 14:50:50 2014 +0100 @@ -0,0 +1,30 @@ +// +// PresetView.h +// riftathon +// +// Created by Robert Tubb on 17/10/2014. +// +// + +#ifndef __riftathon__PresetView__ +#define __riftathon__PresetView__ + +#include <iostream> + +#include "presetManager.h" +#include "UIElement.h" + +class PresetIconView : public UIElement { + string imageFileName; + + ofImage image; + string name; + + + + void draw(); + + +}; + +#endif /* defined(__riftathon__PresetView__) */