Files
mazemaker/lib/options.h
2022-01-15 14:40:21 -05:00

18 lines
327 B
C

#ifndef _OPTIONS_H
#define _OPTIONS_H 1
#include <stdint.h>
#include <stdbool.h>
typedef uint8_t rgb_color_t[3];
typedef unsigned int rand_seed_t;
typedef struct mazeoptions {
rgb_color_t wall_color;
rgb_color_t background_color;
rand_seed_t seed;
bool seed_set;
} mazeoptions_t;
#endif // !def(_OPTIONS_H)