metaforce/Runtime/CGameOptions.hpp

21 lines
278 B
C++
Raw Normal View History

2015-08-17 13:33:58 -07:00
#ifndef __RETRO_CGAMEOPTIONS_HPP__
#define __RETRO_CGAMEOPTIONS_HPP__
namespace Retro
{
2015-08-17 13:33:58 -07:00
class CGameOptions
{
2015-08-19 19:52:07 -07:00
char a = 0;
char b = 0;
char c = 128;
char d = 128;
char e = 255;
char f = 255;
bool g = true;
2015-08-17 13:33:58 -07:00
};
}
2015-08-17 13:33:58 -07:00
#endif // __RETRO_CGAMEOPTIONS_HPP__