termaze

maze generation and pathfinding visualizer
git clone git://git.yotsev.xyz/termaze.git
Log | Files | Refs | README | LICENSE

ui.hpp (248B)


      1 #pragma once
      2 
      3 #ifndef UI_HPP
      4 #define UI_HPP
      5 
      6 #include <ncurses.h>
      7 
      8 #include "colors.hpp"
      9 #include "maze_gen.hpp"
     10 #include "pathfinding.hpp"
     11 #include "state.hpp"
     12 
     13 namespace ui {
     14 extern void RenderUI();
     15 extern void ExecuteKeys();
     16 }
     17 
     18 #endif // UI_HPP