8 lines
83 B
C++
8 lines
83 B
C++
#pragma once
|
|
#include <cstdint>
|
|
|
|
enum eGameState : std::uint32_t
|
|
{
|
|
Playing = 0
|
|
};
|