diff --git a/iris_c/world.c b/iris_c/world.c new file mode 100644 index 0000000..afee3b2 --- /dev/null +++ b/iris_c/world.c @@ -0,0 +1,13 @@ +enum quadrant_type { + empty, + asteroid_field, + star_system, + nebula, + black_hole, + white_hole, + pulsar, + quasar, + supernova, + anomaly, + singularity +} diff --git a/iris_c/world.h b/iris_c/world.h new file mode 100644 index 0000000..20567c1 --- /dev/null +++ b/iris_c/world.h @@ -0,0 +1,23 @@ +#ifndef WORLD_H +#define WORLD_H + +#include + +#define WORLD_WIDTH = 256 +#define WORLD_HEIGHT = 256 + +typedef enum { + Q_EMPTY, + Q_ASTEROID_FIELD, + Q_STAR_SYSTEM, + Q_NEBULA, + Q_BLACK_HOLE, + Q_WHITE_HOLE, + Q_PULSAR, + Q_QUASAR, + Q_SUPERNOVA, + Q_ANOMALY, + Q_SINGULARITY +} quadrant_type; + +#endif