blob: 787a7faeb6ee163947db459ccf652d2537878006 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include "client/pch.hh"
#include "client/gui/window_title.hh"
#include "core/version.hh"
#include "shared/splash.hh"
#include "client/globals.hh"
void gui::window_title::update(void)
{
glfwSetWindowTitle(globals::window, std::format("Voxelius {}: {}", version::triplet, splash::get()).c_str());
}
|