Files
spice2x-r3d/games/mfc/mfc.h
T
2026-02-19 15:41:42 +09:00

23 lines
383 B
C++

#pragma once
#include "games/game.h"
namespace games::mfc {
extern bool HG_MODE;
struct joystick_state {
bool up = false;
bool down = false;
bool start = false;
bool service = false;
bool test = false;
};
class MFCGame : public games::Game {
public:
MFCGame();
virtual void attach() override;
};
}