summary refs log tree commit diff
path: root/src/World/Generator.hpp
blob: 479089f47f0cb78c1ea09768d0b5e6f7d964bdfa (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(int64_t chunk_x, int64_t chunk_y);
};

}