vengine  0.0.1
3D graphics engine
Loading...
Searching...
No Matches
Utils.hpp
Go to the documentation of this file.
1///
2/// @file Utils.hpp
3/// @brief This file contains utils for VEngine
4/// @namespace ven
5///
6
7#pragma once
8
9#include <cstdint>
10
11namespace ven {
12
13 enum ENGINE_STATE : uint8_t {
14 EDITOR = 0,
15 PLAYER = 1,
16 PAUSED = 2,
17 EXIT = 3
18 };
19
20} // namespace ven
ENGINE_STATE
Definition Utils.hpp:13
@ EXIT
Definition Utils.hpp:17
@ EDITOR
Definition Utils.hpp:14
@ PAUSED
Definition Utils.hpp:16
@ PLAYER
Definition Utils.hpp:15