mirror of
https://github.com/jhbruhn/eurorack.git
synced 2025-03-15 02:55:49 +00:00
20 lines
205 B
C
20 lines
205 B
C
|
#ifndef MIDI2CV_UI_H
|
||
|
#define MIDI2CV_UI_H
|
||
|
|
||
|
#include "stmlib/stmlib.h"
|
||
|
|
||
|
class UI {
|
||
|
public:
|
||
|
UI() {}
|
||
|
~UI() {}
|
||
|
|
||
|
void Update();
|
||
|
|
||
|
private:
|
||
|
DISALLOW_COPY_AND_ASSIGN(UI);
|
||
|
};
|
||
|
|
||
|
extern UI ui;
|
||
|
|
||
|
#endif
|