summaryrefslogtreecommitdiffstats
path: root/src/Generating/VerticalLimit.h
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2015-12-03 13:07:23 +0100
committerMattes D <github@xoft.cz>2015-12-03 13:07:23 +0100
commit3fb356648453169758a9f5649f0ed4c5925d911f (patch)
tree57c90ff51aaeac4b1c2e05538a9f486da0a19f28 /src/Generating/VerticalLimit.h
parentMerge pull request #2696 from Gargaj/breeding (diff)
parentChanged Nether defaults to use PieceStructures. (diff)
downloadcuberite-3fb356648453169758a9f5649f0ed4c5925d911f.tar
cuberite-3fb356648453169758a9f5649f0ed4c5925d911f.tar.gz
cuberite-3fb356648453169758a9f5649f0ed4c5925d911f.tar.bz2
cuberite-3fb356648453169758a9f5649f0ed4c5925d911f.tar.lz
cuberite-3fb356648453169758a9f5649f0ed4c5925d911f.tar.xz
cuberite-3fb356648453169758a9f5649f0ed4c5925d911f.tar.zst
cuberite-3fb356648453169758a9f5649f0ed4c5925d911f.zip
Diffstat (limited to 'src/Generating/VerticalLimit.h')
-rw-r--r--src/Generating/VerticalLimit.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/Generating/VerticalLimit.h b/src/Generating/VerticalLimit.h
new file mode 100644
index 000000000..0e36424ac
--- /dev/null
+++ b/src/Generating/VerticalLimit.h
@@ -0,0 +1,26 @@
+
+// VerticalLimit.h
+
+// Declares the public interface for cPiece's cVerticalLimit implementations
+
+
+
+
+
+#pragma once
+
+#include "PieceGenerator.h"
+
+
+
+
+
+/** Returns a new cPiece::cVerticalLimit descendant based on the specified description.
+a_LimitDesc is in the format "<LimitClass>|<Params>". The params and the pipe may be omitted.
+If an unknown class is requested or the param parsing fails, nullptr is returned.
+If a_LogWarnings is true, any problem is reported into the server console. */
+cPiece::cVerticalLimitPtr CreateVerticalLimitFromString(const AString & a_LimitDesc, bool a_LogWarnings);
+
+
+
+