summaryrefslogtreecommitdiffstats
path: root/src/game/server/world/random_tick.hh
blob: 0d012673ee3339ad10f9207e4835fa2a3094901f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// SPDX-License-Identifier: BSD-2-Clause
// Copyright (c) 2025 Kirill Dmitrievich
// File: random_tick.hh
// Description: Voxel random ticking

#ifndef SERVER_WORLD_RANDOM_TICK_HH
#define SERVER_WORLD_RANDOM_TICK_HH
#pragma once

#include "shared/types.hh"

class Chunk;

namespace random_tick
{
void init(void);
void tick(const chunk_pos& cpos, Chunk* chunk);
} // namespace random_tick

#endif