summaryrefslogtreecommitdiffstats
path: root/game/client/gui/window_title.cc
blob: 2f962053e68c068ae91b3687a4013294e64c1e25 (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::semver, splash::get()).c_str());
}