blob: 4ef1691902773b9e8c3d53fa15fddebf69c262d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#pragma once
#include "shared/types.hh"
namespace world
{
class Chunk;
} // namespace world
namespace world::random_tick
{
void init(void);
void tick(const chunk_pos& cpos, Chunk* chunk);
} // namespace world::random_tick
|