metaforce/Runtime/CGameOptions.hpp

23 lines
293 B
C++
Raw Normal View History

2015-08-17 20:33:58 +00:00
#ifndef __RETRO_CGAMEOPTIONS_HPP__
#define __RETRO_CGAMEOPTIONS_HPP__
2015-08-31 03:44:42 +00:00
#include "RetroTypes.hpp"
namespace Retro
{
2015-08-17 20:33:58 +00:00
class CGameOptions
{
2015-08-31 03:44:42 +00:00
u8 a = 0;
u8 b = 0;
u8 c = 128;
u8 d = 128;
u8 e = 255;
u8 f = 255;
2015-08-20 02:52:07 +00:00
bool g = true;
2015-08-17 20:33:58 +00:00
};
}
2015-08-17 20:33:58 +00:00
#endif // __RETRO_CGAMEOPTIONS_HPP__