StdAfx.h 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  1. /* Copyright (c) 2002-2012 Croteam Ltd.
  2. This program is free software; you can redistribute it and/or modify
  3. it under the terms of version 2 of the GNU General Public License as published by
  4. the Free Software Foundation
  5. This program is distributed in the hope that it will be useful,
  6. but WITHOUT ANY WARRANTY; without even the implied warranty of
  7. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  8. GNU General Public License for more details.
  9. You should have received a copy of the GNU General Public License along
  10. with this program; if not, write to the Free Software Foundation, Inc.,
  11. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */
  12. #include <Engine/Engine.h>
  13. #include <GameMP/Game.h>
  14. #include <GameMP/SEColors.h>
  15. /* rcg10042001 protect against Visual C-isms. */
  16. #ifdef _MSC_VER
  17. #define DECL_DLL _declspec(dllimport)
  18. #endif
  19. #ifdef PLATFORM_UNIX
  20. #define DECL_DLL
  21. #endif
  22. #include <EntitiesMP/Global.h>
  23. #include <EntitiesMP/Common/Common.h>
  24. #include <EntitiesMP/Common/GameInterface.h>
  25. #include <EntitiesMP/Player.h>
  26. #undef DECL_DLL