update version to 0.23

This commit is contained in:
MihailRis
2024-08-05 20:11:37 +03:00
parent bbfbb28349
commit c7ce9a939f
3 changed files with 7 additions and 4 deletions
+4 -1
View File
@@ -130,9 +130,12 @@ int Window::initialize(DisplaySettings* settings) {
Window::width = settings->width.get();
Window::height = settings->height.get();
std::string title = "VoxelEngine-Cpp v" +
std::string title = "VoxelCore v" +
std::to_string(ENGINE_VERSION_MAJOR) + "." +
std::to_string(ENGINE_VERSION_MINOR);
if (ENGINE_DEBUG_BUILD) {
title += " [debug]";
}
glfwSetErrorCallback(error_callback);
if (glfwInit() == GLFW_FALSE) {