mirror of
https://github.com/tribes2/engine.git
synced 2026-01-22 12:44:45 +00:00
42 lines
795 B
C
42 lines
795 B
C
|
|
//-----------------------------------------------------------------------------
|
||
|
|
// V12 Engine
|
||
|
|
//
|
||
|
|
// Copyright (c) 2001 GarageGames.Com
|
||
|
|
// Portions Copyright (c) 2001 by Sierra Online, Inc.
|
||
|
|
//-----------------------------------------------------------------------------
|
||
|
|
|
||
|
|
#ifndef _MMATH_H_
|
||
|
|
#define _MMATH_H_
|
||
|
|
|
||
|
|
|
||
|
|
#ifndef _MPOINT_H_
|
||
|
|
#include "Math/mPoint.h"
|
||
|
|
#endif
|
||
|
|
#ifndef _MRECT_H_
|
||
|
|
#include "Math/mRect.h"
|
||
|
|
#endif
|
||
|
|
#ifndef _MBOX_H_
|
||
|
|
#include "Math/mBox.h"
|
||
|
|
#endif
|
||
|
|
#ifndef _MPLANE_H_
|
||
|
|
#include "Math/mPlane.h"
|
||
|
|
#endif
|
||
|
|
#ifndef _MMATRIX_H_
|
||
|
|
#include "Math/mMatrix.h"
|
||
|
|
#endif
|
||
|
|
#ifndef _MQUAT_H_
|
||
|
|
#include "Math/mQuat.h"
|
||
|
|
#endif
|
||
|
|
#ifndef _MSPHERE_H_
|
||
|
|
#include "Math/mSphere.h"
|
||
|
|
#endif
|
||
|
|
#ifndef _MCONSTANTS_H_
|
||
|
|
#include "Math/mConstants.h"
|
||
|
|
#endif
|
||
|
|
#ifndef _MRANDOM_H_
|
||
|
|
#include "Math/mRandom.h"
|
||
|
|
#endif
|
||
|
|
|
||
|
|
|
||
|
|
#endif //_MMATH_H_
|