Changeset 7335 for code/branches/doc/src/orxonox/Main.cc
- Timestamp:
- Sep 3, 2010, 1:30:59 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/doc/src/orxonox/Main.cc
r7163 r7335 43 43 #include "Main.h" 44 44 45 SetCommandLineSwitch(console).information("Start in console mode (text IO only)");46 // Shortcuts for easy direct loading47 SetCommandLineSwitch(server).information("Start in server mode");48 SetCommandLineSwitch(client).information("Start in client mode");49 SetCommandLineSwitch(dedicated).information("Start in dedicated server mode");50 SetCommandLineSwitch(standalone).information("Start in standalone mode");51 SetCommandLineSwitch(dedicatedClient).information("Start in dedicated client mode");52 53 45 DeclareToluaInterface(Orxonox); 54 46 DeclareToluaInterface(Network); … … 56 48 namespace orxonox 57 49 { 50 //! @cmdarg 51 SetCommandLineSwitch(console).information("Start in console mode (text IO only)"); 52 //! @cmdarg 53 SetCommandLineSwitch(server).information("Start in server mode"); 54 //! @cmdarg 55 SetCommandLineSwitch(client).information("Start in client mode"); 56 //! @cmdarg 57 SetCommandLineSwitch(dedicated).information("Start in dedicated server mode"); 58 //! @cmdarg 59 SetCommandLineSwitch(standalone).information("Start in standalone mode"); 60 //! @cmdarg 61 SetCommandLineSwitch(dedicatedClient).information("Start in dedicated client mode"); 62 58 63 /** 59 64 @brief
Note: See TracChangeset
for help on using the changeset viewer.