bsnes/higan/ws/interface/pocket-challenge-v2.cpp

12 lines
358 B
C++

auto PocketChallengeV2Interface::information() -> Information {
Information information;
information.manufacturer = "Benesse";
information.name = "Pocket Challenge V2";
information.extension = "pc2";
return information;
}
auto PocketChallengeV2Interface::load() -> bool {
return system.load(this, System::Model::PocketChallengeV2);
}