mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-07-28 21:12:24 +00:00
21 lines
383 B
C++
21 lines
383 B
C++
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <vector>
|
|
|
|
#include "Layer.h"
|
|
|
|
class LevelType;
|
|
|
|
class BiomeOverrideLayer : public Layer {
|
|
private:
|
|
static const unsigned int width = 216;
|
|
static const unsigned int height = 216;
|
|
|
|
std::vector<uint8_t> m_biomeOverride;
|
|
|
|
public:
|
|
BiomeOverrideLayer(int seedMixup);
|
|
std::vector<int> getArea(int xo, int yo, int w, int h);
|
|
}; |