summaryrefslogtreecommitdiffstats
path: root/src/game/client/world/skybox.hh
blob: 421b89193af8c30037f905cddfeb03a7547c0dab (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: skybox.hh
// Description: Skybox rendering

#ifndef CLIENT_WORLD_SKYBOX_HH
#define CLIENT_WORLD_SKYBOX_HH
#pragma once

namespace skybox
{
extern glm::fvec3 fog_color;
} // namespace skybox

namespace skybox
{
void init(void);
} // namespace skybox

#endif