| 732 | }; |
| 733 | |
| 734 | NetworkMenu::NetworkMenu( MenuBase* parent, const Sound::SoundEnginePtr& sound_engine, HostCommands& host_commands ) |
| 735 | : MenuBase( parent, sound_engine ) |
| 736 | , host_commands_(host_commands) |
| 737 | { |
| 738 | submenus_[0].reset( new NetworkConnectMenu( this, sound_engine, host_commands ) ); |
| 739 | submenus_[1].reset( new NetworkCreateServerMenu( this, sound_engine, host_commands ) ); |
| 740 | submenus_[2].reset( new PlayerSetupMenu( this, sound_engine, host_commands ) ); |
| 741 | } |
| 742 | |
| 743 | NetworkMenu::~NetworkMenu() |
| 744 | {} |
nothing calls this directly
no outgoing calls
no test coverage detected