| 18 | } |
| 19 | |
| 20 | Menu_Load* Menu_Load::create(Engine::BaseEngine& e) |
| 21 | { |
| 22 | Menu_Load* s = new Menu_Load(e); |
| 23 | s->initializeInstance("MENU_SAVEGAME_LOAD"); |
| 24 | |
| 25 | s->gatherAvailableSavegames(); |
| 26 | return s; |
| 27 | } |
| 28 | |
| 29 | void Menu_Load::gatherAvailableSavegames() |
| 30 | { |
nothing calls this directly
no test coverage detected