00001 /* 00002 CS Senior Project 2003 00003 Team : Leftfield 00004 Project : ModernWarfare 00005 Members : 00006 - Russ Christensen <rchriste@cs.utah.edu> 00007 - Todd Smith <tcsmith@cs.utah.edu> 00008 - Usit Duongsaa <duongsaa@cs.utah.edu> 00009 00010 Copyright 2003 Russ Christensen, Usit Duongsaa, and Todd Smith. All rights reserved. 00011 00012 Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 00013 00014 Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 00015 Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 00016 THIS SOFTWARE IS PROVIDED BY RUSS CHRISTENSEN, USIT DUONGSAA, AND TODD SMITH ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL RUSS, USIT, TODD OR OTHER CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 00017 */ 00018 00019 00024 #ifndef INCLUDE_EXTERNALLIBS 00025 #define INCLUDE_EXTERNALLIBS 00026 00027 //------------------------------------------------------------------------------------ 00028 // external libraries 00029 #include "..\..\Libraries\dx81\include\d3d8.h" 00030 #include "..\..\Libraries\dx81\include\D3dx8math.h" 00031 00032 #include "..\..\Libraries\NukeDX\include\NukeDX.h" 00033 00034 #include "..\..\Libraries\CommonDX\include\d3dfont.h" 00035 #include "..\..\Libraries\CommonDX\include\d3dutil.h" 00036 #include "..\..\Libraries\CommonDX\include\dxutil.h" 00037 00038 #include <vector> 00039 #include <string> 00040 #include <fstream> 00041 #include <sstream> 00042 #include <cassert> 00043 #include <Exception> 00044 #include <cmath> 00045 #include <algorithm> 00046 #include <map> 00047 #include <list> 00048 00049 using namespace std; 00050 //------------------------------------------------------------------------------------ 00051 00052 #endif
1.3-rc2