MiniEngine/SDLWrapper/_Platform.h

15 lines
166 B
C++
Raw Normal View History

2017-06-18 20:37:17 +08:00
#pragma once
2017-07-31 00:18:10 +08:00
namespace MiniEngine
{
2017-06-18 20:37:17 +08:00
enum class Platform
{
Unknown,
Windows,
MacOS,
Linux,
iOS,
Android
};
2017-07-31 00:18:10 +08:00
} /// End of namespace MiniEngine