Removed main.c, no longer needed
This commit is contained in:
parent
74aafed00e
commit
05ee7c9ca5
1 changed files with 0 additions and 51 deletions
51
src/main.cpp
51
src/main.cpp
|
@ -1,51 +0,0 @@
|
|||
// ___________ _________ _____ __
|
||||
// \_ _____/______ ____ ____ \_ ___ \____________ _/ ____\/ |_
|
||||
// | __) \_ __ \_/ __ \_/ __ \/ \ \/\_ __ \__ \\ __\\ __|
|
||||
// | \ | | \/\ ___/\ ___/\ \____| | \// __ \| | | |
|
||||
// \___ / |__| \___ >\___ >\______ /|__| (____ /__| |__|
|
||||
// \/ \/ \/ \/ \/
|
||||
// ______________________ ______________________
|
||||
// T H E W A R B E G I N S
|
||||
// FreeCraft - A free fantasy real time strategy game engine
|
||||
//
|
||||
/**@name main.c - Dummy main for win32. */
|
||||
//
|
||||
// (c) Copyright 2000,2001 by Lutz Sammer
|
||||
//
|
||||
// FreeCraft is free software; you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published
|
||||
// by the Free Software Foundation; only version 2 of the License.
|
||||
//
|
||||
// FreeCraft is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// $Id$
|
||||
|
||||
//@{
|
||||
|
||||
#if 0
|
||||
|
||||
/**
|
||||
** Main entry point. This is needed for mingw32 and SDL.
|
||||
** @attention
|
||||
** This combination didn't likes if main is in the freecraft lib.
|
||||
**
|
||||
** There is no freecraft lib anymore. This will be removed soon.
|
||||
*/
|
||||
|
||||
#if defined(USE_SDL)
|
||||
#include "SDL.h"
|
||||
#endif
|
||||
|
||||
int main(int argc,char** argv)
|
||||
{
|
||||
extern int mymain(int argc,char** argv);
|
||||
|
||||
return mymain(argc,argv);
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
//@}
|
Loading…
Add table
Reference in a new issue