blob: a8fcc20c85e2a8edd7c518d3fb0682fa3ef278a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// SPDX-License-Identifier: BSD-2-Clause
// Copyright (c) 2025 Kirill Dmitrievich
// File: chunk_visibility.hh
// Description: Discard chunks out of view
#ifndef CLIENT_WORLD_CHUNK_VISIBILITY_HH
#define CLIENT_WORLD_CHUNK_VISIBILITY_HH
#pragma once
namespace chunk_visibility
{
void update_late(void);
} // namespace chunk_visibility
#endif
|