Use argc and argv passed down

This commit is contained in:
mdiluzio 2015-01-02 15:06:04 +00:00
parent 2281bcb6cd
commit 0619031cb6
7 changed files with 13 additions and 17 deletions

View file

@ -13,11 +13,11 @@ bool FileExists( const std::string& name );
void WaitForFile( const std::string& name, const std::chrono::milliseconds& time );
int runFromFilesystem( const std::string& gamefile );
bool OutputGameStateFile(CTTRTSGame &game, const std::string &gameDir);
std::string getMapsDir();
std::string getGamesDir();
int runFromFilesystem(int argc, char* argv[]);
#endif