mirror of
https://github.com/spice2x/spice2x.github.io.git
synced 2026-08-01 22:30:42 -07:00
07a0df5fdc
## Link to GitHub Issue, if one exists None ## Description of change - Added bi2x_hook - Added J32D (drum) and J33I (guitar) emulations - AMI2000 card reader (this game uses this instead of ICCA) ## Testing Played through a 15-minute session on Drummania. Guitar mode works with keyboard input.
10 lines
193 B
C++
10 lines
193 B
C++
#pragma once
|
|
|
|
#include "acioemu/acioemu.h"
|
|
|
|
namespace games::gitadora {
|
|
class GitadoraDevice : public acioemu::ACIODeviceEmu {
|
|
public:
|
|
bool is_ready = false;
|
|
};
|
|
} |