blob: ea65b64dac3142ee10c0bc2a980dc7de5cff87c6 (
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: window_title.cc
// Description: Random MOTD in the window title
#include "client/pch.hh"
#include "client/gui/window_title.hh"
#include "core/version.hh"
#include "shared/splash.hh"
#include "client/globals.hh"
void window_title::update(void)
{
glfwSetWindowTitle(globals::window, std::format("Voxelius {}: {}", version::triplet, splash::get()).c_str());
}
|