termaze

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

colors.hpp (179B)


      1 #pragma once
      2 
      3 #ifndef COLORS_HPP
      4 #define COLORS_HPP
      5 
      6 enum color {
      7     black = 1,
      8     red,
      9     green,
     10     yellow,
     11     blue,
     12     purple,
     13     cyan,
     14     white
     15 };
     16 
     17 #endif //COLORS_HPP