summary refs log tree commit diff
path: root/src/World/Generator.hpp
blob: afe43c6a6e3ce7b2b3faaf1e97e4ca3ffad5b05d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

#include <cstdint>
#include "Chunk.hpp"
#include "BiomeType.hpp"

namespace MC::World {

class Generator {
public:
    Generator() = default;
    Chunk generate(int64_t chunk_x, int64_t chunk_y);
};

}