mirror of
https://github.com/borgesdan/xn65
synced 2024-12-29 21:54:47 +01:00
11 lines
148 B
C++
11 lines
148 B
C++
|
#ifndef XNA_PIPELINE_ENUMS_HPP
|
||
|
#define XNA_PIPELINE_ENUMS_HPP
|
||
|
|
||
|
namespace xna {
|
||
|
enum class TargetPlatform
|
||
|
{
|
||
|
Windows,
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|