aboutsummaryrefslogtreecommitdiff
path: root/cavegen.h
diff options
context:
space:
mode:
Diffstat (limited to 'cavegen.h')
-rw-r--r--cavegen.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/cavegen.h b/cavegen.h
deleted file mode 100644
index 05d2fd2..0000000
--- a/cavegen.h
+++ /dev/null
@@ -1,31 +0,0 @@
-#ifndef CAVEGEN_H_
-#define CAVEGEN_H_
-
-#include <stdbool.h>
-
-#define HEIGHT 100
-#define WIDTH 180
-
-enum tile_type {
- WALL,
- GROUND,
- UP_STAIR,
- DOWN_STAIR,
-};
-
-struct point {
- int x;
- int y;
-};
-
-struct map {
- enum tile_type *map;
- struct point entry_point;
-
- int width;
- int height;
-};
-
-void create_cave(struct map *map);
-
-#endif // CAVEGEN_H_