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