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/VerticalStrategy.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 '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); + + + + |