VEX Engine
Retro looking game engine made in vulkan mostly because i wanted to understand it better.
Loading...
Searching...
No Matches
GameInfo.hpp
Go to the documentation of this file.
1
6
7#pragma once
8
9#include <iostream>
10#include <cstdint>
11
12namespace vex {
15struct GameInfo {
16 std::string projectName = "ExampleName";
17 uint16_t versionMajor = 0;
18 uint16_t versionMinor = 0;
19 uint16_t versionPatch = 0;
20};
21}
this struct contains information about the game. like project name and version.
Definition GameInfo.hpp:15