diff options
author | Mattes D <github@xoft.cz> | 2015-11-11 10:32:42 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2015-12-01 10:35:07 +0100 |
commit | b8fbba5eb92cda32b13d65f3704adf778da82f38 (patch) | |
tree | 0c6e8f47ae152e5ffade6f0a7457505101764753 /src/Generating/VerticalLimit.h | |
parent | Merge pull request #2696 from Gargaj/breeding (diff) | |
download | cuberite-b8fbba5eb92cda32b13d65f3704adf778da82f38.tar cuberite-b8fbba5eb92cda32b13d65f3704adf778da82f38.tar.gz cuberite-b8fbba5eb92cda32b13d65f3704adf778da82f38.tar.bz2 cuberite-b8fbba5eb92cda32b13d65f3704adf778da82f38.tar.lz cuberite-b8fbba5eb92cda32b13d65f3704adf778da82f38.tar.xz cuberite-b8fbba5eb92cda32b13d65f3704adf778da82f38.tar.zst cuberite-b8fbba5eb92cda32b13d65f3704adf778da82f38.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Generating/VerticalLimit.h | 26 |
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); + + + + |