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

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

namespace MC::World {

class Generator {
public:
    Generator() = default;

    Chunk generate(uint32_t x, uint32_t y);
};

}