2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 11:07:44 +00:00

Windows refactors

This commit is contained in:
Jack Andersen
2015-08-30 17:44:42 -10:00
parent 7223a9dce5
commit d1faf4e72d
40 changed files with 129 additions and 80 deletions

View File

@@ -1,17 +1,19 @@
#ifndef __RETRO_CGAMEOPTIONS_HPP__
#define __RETRO_CGAMEOPTIONS_HPP__
#include "RetroTypes.hpp"
namespace Retro
{
class CGameOptions
{
char a = 0;
char b = 0;
char c = 128;
char d = 128;
char e = 255;
char f = 255;
u8 a = 0;
u8 b = 0;
u8 c = 128;
u8 d = 128;
u8 e = 255;
u8 f = 255;
bool g = true;
};