More work on the sink interface

This commit is contained in:
Ryzerth
2020-11-22 18:26:48 +01:00
parent f1084157a3
commit 61a612cf30
11 changed files with 195 additions and 13 deletions

View File

@ -0,0 +1,12 @@
#include <gui/menus/sink.h>
#include <signal_path/signal_path.h>
namespace sinkmenu {
void init() {
}
void draw(void* ctx) {
sigpath::sinkManager.showMenu();
}
};

View File

@ -0,0 +1,6 @@
#pragma once
namespace sinkmenu {
void init();
void draw(void* ctx);
};