blob: b15f2c5ba0fbab506052818803f1e4ba3262d44f (
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 window_title::update(void)
{
glfwSetWindowTitle(globals::window, std::format("Voxelius {}: {}", version::triplet, splash::get()).c_str());
}
|