Add color options, bump minor version

This commit is contained in:
2021-05-09 18:20:46 -04:00
parent d5475ba2de
commit e05724ea53
8 changed files with 121 additions and 16 deletions

13
lib/options.h Normal file
View File

@@ -0,0 +1,13 @@
#ifndef _OPTIONS_H
#define _OPTIONS_H 1
#include <stdint.h>
typedef uint8_t rgb_color_t[3];
typedef struct mazeoptions {
rgb_color_t wall_color;
rgb_color_t background_color;
} mazeoptions_t;
#endif // !def(_OPTIONS_H)