metaforce/Runtime/CGameOptions.hpp

23 lines
292 B
C++
Raw Normal View History

2016-02-13 09:02:47 +00:00
#ifndef __PSHAG_CGAMEOPTIONS_HPP__
#define __PSHAG_CGAMEOPTIONS_HPP__
2015-08-17 20:33:58 +00:00
2015-08-31 03:44:42 +00:00
#include "RetroTypes.hpp"
2016-03-04 23:04:53 +00:00
namespace urde
{
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
};
}
2016-02-13 09:02:47 +00:00
#endif // __PSHAG_CGAMEOPTIONS_HPP__