mirror of https://github.com/bsnes-emu/bsnes.git
12 lines
326 B
C++
12 lines
326 B
C++
auto WonderSwanInterface::information() -> Information {
|
|
Information information;
|
|
information.manufacturer = "Bandai";
|
|
information.name = "WonderSwan";
|
|
information.extension = "ws";
|
|
return information;
|
|
}
|
|
|
|
auto WonderSwanInterface::load() -> bool {
|
|
return system.load(this, System::Model::WonderSwan);
|
|
}
|