mirror of
https://github.com/spice2x/spice2x.github.io.git
synced 2026-08-02 14:50:41 -07:00
1b7ebd6fc2
## Link to GitHub Issue, if one exists n/a ## Description of change Adds Mahjong Fight Girl Support ## Compiling + ## Testing Tested with VFG:J:E:A:2024100800 in HG mode with VFG IO. No modifications made to data, other than avs-config.xml and ea3-config.xml. B and C modes don't work because of serial touchscreen. UKS mode doesn't work because of IO.
19 lines
409 B
C++
19 lines
409 B
C++
#pragma once
|
|
|
|
#include "games/game.h"
|
|
|
|
namespace games::mfg {
|
|
extern std::string MFG_INJECT_ARGS;
|
|
extern std::string MFG_CABINET_TYPE;
|
|
extern bool MFG_NO_IO;
|
|
|
|
class MFGGame : public games::Game {
|
|
public:
|
|
MFGGame() : Game("Mahjong Fight Girl") {}
|
|
|
|
virtual void attach() override;
|
|
virtual void post_attach() override;
|
|
virtual void detach() override;
|
|
};
|
|
}
|