Changeset 3196 for code/trunk/src/orxonox/Main.cc
- Timestamp:
- Jun 20, 2009, 9:20:47 AM (16 years ago)
- Location:
- code/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
- Property svn:mergeinfo changed
/code/branches/pch (added) merged: 3114-3118,3124-3125,3127-3131,3133,3138-3194
- Property svn:mergeinfo changed
-
code/trunk/src/orxonox/Main.cc
r3110 r3196 28 28 */ 29 29 30 /** 31 @mainpage Orxonox Documentation 32 */ 30 /** 31 @file 32 @brief 33 Entry point of the program. 34 */ 33 35 34 /** 35 @file 36 @brief Entry point of the program. 37 */ 38 39 #include "OrxonoxConfig.h" 36 #include "OrxonoxPrereqs.h" 40 37 41 38 #include "util/Debug.h" … … 47 44 Main method. Game starts here (except for static initialisations). 48 45 */ 46 #ifdef ORXONOX_USE_WINMAIN 47 INT WINAPI WinMain(HINSTANCE hInst, HINSTANCE, LPSTR strCmdLine, INT) 48 #else 49 49 int main(int argc, char** argv) 50 #endif 50 51 { 51 52 {
Note: See TracChangeset
for help on using the changeset viewer.