summaryrefslogtreecommitdiffstats
path: root/game/server/worldgen.hh
blob: 31530717c74bacdb279a8b406ad9eabb136457c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef SERVER_WORLDGEN_HH
#define SERVER_WORLDGEN_HH 1
#pragma once

#include "shared/types.hh"

class Dimension;
class Session;

namespace worldgen
{
bool is_generating(Dimension *dimension, const chunk_pos &cpos);
void request_chunk(Session *session, const chunk_pos &cpos);
} // namespace worldgen

#endif /* SERVER_WORLDGEN_HH */