summary refs log tree commit diff
path: root/src/World/Generator.hpp
blob: 8e67ee1ad9d30634e89ee014abe3b4ee5f62090c (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 {

class Generator {
public:
    Generator() = default;

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

}