10 lines
184 B
C++
10 lines
184 B
C++
#ifndef DRUMZ_UI_DISPLAY_HPP
|
|
#define DRUMZ_UI_DISPLAY_HPP
|
|
|
|
namespace Display {
|
|
void init();
|
|
void update();
|
|
void setLabelText(String text);
|
|
}
|
|
|
|
#endif // DRUMZ_UI_DISPLAY_HPP
|