blob: 85e7d5e859e776c8493ba36465bf54f0e866560d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// SPDX-License-Identifier: BSD-2-Clause
// Copyright (c) 2025 Kirill Dmitrievich
// File: unloader.hh
// Description: Handle chunks that are out of view for all players
#ifndef SERVER_WORLD_UNLOADER_HH
#define SERVER_WORLD_UNLOADER_HH
#pragma once
class Dimension;
namespace unloader
{
void init(void);
void init_late(void);
void fixed_update_late(Dimension* dimension);
} // namespace unloader
#endif
|