------------------------------------------------------------------------
| 847 | |
| 848 | //------------------------------------------------------------------------ |
| 849 | const ILevelInfo::TGameTypeInfo* CLevelInfo::GetDefaultGameType() const |
| 850 | { |
| 851 | if (!m_gameTypes.empty()) |
| 852 | { |
| 853 | return &m_gameTypes[0]; |
| 854 | } |
| 855 | |
| 856 | return 0; |
| 857 | }; |
| 858 | |
| 859 | /// Used by console auto completion. |
| 860 | struct SLevelNameAutoComplete : public IConsoleArgumentAutoComplete |
no test coverage detected