diff options
Diffstat (limited to 'UI.cpp')
-rw-r--r-- | UI.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -0,0 +1,18 @@ +#include "UI.h" + +#include <iostream> + +void UI::draw() +{ + std::cout << std::endl; + std::cout << "- -- BPM +" << std::endl; + std::cout << "Mode: Click __/__ (Clock Internal)" << std::endl; + std::cout << "Status:" << std::endl; + std::cout << " Alive/not alive" << std::endl; + std::cout << " CPU: --% --% ..." << std::endl; + std::cout << " Notes/Channels: -- -- -- ... (Choose)" << std::endl; + std::cout << " Timestamp: ------" << std::endl; + std::cout << " Active sensing: ---" << std::endl; + std::cout << " Clock: ____" << std::endl; + std::cout << " Click: ____" << std::endl; +} |