aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/SmoothZoomLayer.h
diff options
context:
space:
mode:
Diffstat (limited to 'Minecraft.World/SmoothZoomLayer.h')
-rw-r--r--Minecraft.World/SmoothZoomLayer.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/Minecraft.World/SmoothZoomLayer.h b/Minecraft.World/SmoothZoomLayer.h
new file mode 100644
index 00000000..b2ac4e78
--- /dev/null
+++ b/Minecraft.World/SmoothZoomLayer.h
@@ -0,0 +1,12 @@
+#pragma once
+
+#include "Layer.h"
+
+class SmoothZoomLayer : public Layer
+{
+public:
+ SmoothZoomLayer(__int64 seedMixup, shared_ptr<Layer>parent);
+
+ virtual intArray getArea(int xo, int yo, int w, int h);
+ static shared_ptr<Layer>zoom(__int64 seed, shared_ptr<Layer>sup, int count);
+}; \ No newline at end of file