summaryrefslogtreecommitdiff
path: root/src/mapgen.h
diff options
context:
space:
mode:
authorparamat <mat.gregory@virginmedia.com>2015-05-13 00:33:41 +0100
committerparamat <mat.gregory@virginmedia.com>2015-05-17 06:07:39 +0100
commitc0edb8e313590efcf473e02ab46dd967774386d0 (patch)
tree7a224cf8acfb441ad1f8c3be5461229fa3e3dd7f /src/mapgen.h
parent3ffb5f5761a83773037869d6f6179353c46a650a (diff)
downloadminetest-c0edb8e313590efcf473e02ab46dd967774386d0.tar.gz
minetest-c0edb8e313590efcf473e02ab46dd967774386d0.tar.bz2
minetest-c0edb8e313590efcf473e02ab46dd967774386d0.zip
Mapgen v5/v7: Detect sandstone, enable sandstone brick dungeons
Diffstat (limited to 'src/mapgen.h')
-rw-r--r--src/mapgen.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/mapgen.h b/src/mapgen.h
index 5be004e9f..b7fecb7a4 100644
--- a/src/mapgen.h
+++ b/src/mapgen.h
@@ -70,6 +70,13 @@ enum GenNotifyType {
NUM_GENNOTIFY_TYPES
};
+// TODO(hmmmm/paramat): make stone type selection dynamic
+enum MgStoneType {
+ STONE,
+ DESERT_STONE,
+ SANDSTONE,
+};
+
struct GenNotifyEvent {
GenNotifyType type;
v3s16 pos;