2d-platformer/Game/include/ConstGlobals.h

13 lines
162 B
C++

#pragma once
namespace global
{
enum class Scenes : int
{
Play,
SceneCount
};
inline constexpr int SCENE_COUNT {(int)Scenes::SceneCount};
}//namespace