Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/src/network/NetworkPrecompiledHeaders.h @ 3322

Last change on this file since 3322 was 3322, checked in by rgrieder, 15 years ago

Removed unnecessary PCH dependencies.

  • Property svn:eol-style set to native
File size: 1.6 KB
Line 
1/*
2 *   ORXONOX - the hottest 3D action shooter ever to exist
3 *                    > www.orxonox.net <
4 *
5 *
6 *   License notice:
7 *
8 *   This program is free software; you can redistribute it and/or
9 *   modify it under the terms of the GNU General Public License
10 *   as published by the Free Software Foundation; either version 2
11 *   of the License, or (at your option) any later version.
12 *
13 *   This program is distributed in the hope that it will be useful,
14 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
15 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 *   GNU General Public License for more details.
17 *
18 *   You should have received a copy of the GNU General Public License
19 *   along with this program; if not, write to the Free Software
20 *   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
21 *
22 *   Author:
23 *      Reto Grieder
24 *   Co-authors:
25 *      ...
26 *
27 */
28
29/**
30@file
31@brief
32    Compilation of the most often used header files in the network library
33*/
34
35#include "OrxonoxConfig.h"
36
37#include <cassert>
38#include <fstream>
39#include <iostream>
40#include <list>
41#include <map>
42#include <queue>
43#include <set>
44#include <sstream>
45#include <string>
46#include <vector>
47
48
49#ifdef ORXONOX_COMPILER_MSVC
50
51#include <OgreMath.h>
52#include <OgreVector2.h>
53#include <OgreVector3.h>
54#include <OgreVector4.h>
55#include <OgreQuaternion.h>
56#include <OgreColourValue.h>
57
58#define WIN32_LEAN_AND_MEAN
59#include <enet/enet.h>
60#undef max
61#undef min
62
63#include "util/Debug.h"
64#include "core/Identifier.h"
65
66#endif /* ORXONOX_COMPILER_MSVC */
Note: See TracBrowser for help on using the repository browser.