diff options
author | Mattes D <github@xoft.cz> | 2015-12-03 13:07:23 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2015-12-03 13:07:23 +0100 |
commit | 3fb356648453169758a9f5649f0ed4c5925d911f (patch) | |
tree | 57c90ff51aaeac4b1c2e05538a9f486da0a19f28 /src/Generating/VerticalStrategy.h | |
parent | Merge pull request #2696 from Gargaj/breeding (diff) | |
parent | Changed Nether defaults to use PieceStructures. (diff) | |
download | cuberite-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/VerticalStrategy.h')
-rw-r--r-- | src/Generating/VerticalStrategy.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/Generating/VerticalStrategy.h b/src/Generating/VerticalStrategy.h new file mode 100644 index 000000000..77e86f660 --- /dev/null +++ b/src/Generating/VerticalStrategy.h @@ -0,0 +1,25 @@ + +// VerticalStrategy.h + +// Declares the public interface for cPiece's cVerticalStrategy implementations + + + + + +#pragma once + +#include "PieceGenerator.h" + + + + + +/** Returns a new cPiece::cVerticalStrategy descendant based on the specified description. +a_StrategyDesc is in the format "<StrategyClass>|<Params>". The params and the pipe may be omitted. +If an unknown class is requested or the param parsing fails, nullptr is returned. */ +cPiece::cVerticalStrategyPtr CreateVerticalStrategyFromString(const AString & a_StrategyDesc, bool a_LogWarnings); + + + + |