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