mirror of https://github.com/bsnes-emu/bsnes.git
12 lines
358 B
C++
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);
|
|
}
|