metaforce/Runtime/CGameOptions.hpp

23 lines
289 B
C++
Raw Normal View History

2016-04-12 23:07:23 -07:00
#ifndef __URDE_CGAMEOPTIONS_HPP__
#define __URDE_CGAMEOPTIONS_HPP__
2015-08-17 13:33:58 -07:00
2015-08-30 20:44:42 -07:00
#include "RetroTypes.hpp"
2016-03-04 15:04:53 -08:00
namespace urde
{
2015-08-17 13:33:58 -07:00
class CGameOptions
{
2015-08-30 20:44:42 -07:00
u8 a = 0;
u8 b = 0;
u8 c = 128;
u8 d = 128;
u8 e = 255;
u8 f = 255;
2015-08-19 19:52:07 -07:00
bool g = true;
2015-08-17 13:33:58 -07:00
};
}
2016-04-12 23:07:23 -07:00
#endif // __URDE_CGAMEOPTIONS_HPP__