1
0
mirror of https://github.com/Halofreak1990/XFXFramework synced 2024-12-26 13:49:34 +01:00
Halofreak1990 8f089dc2ab Added the current XFX directory tree.
WARNING!!! This revision cannot compile correctly. It is updated to reflect the many changes within the XFX project.
2010-12-04 16:14:34 +00:00

44 lines
848 B
C

/********************************************************
* XFX.h *
* *
* XFX namespace include file *
* Copyright © XFX Team. All Rights Reserved *
********************************************************/
#ifndef _XFX_
#define _XFX_
//
//Data types
//
#include "BoundingBox.h"
#include "BoundingSphere.h"
#include "GameTime.h"
#include "MathHelper.h"
#include "Matrix.h"
#include "Point.h"
#include "Quaternion.h"
#include "Ray.h"
#include "Rectangle.h"
#include "Vector2.h"
#include "Vector3.h"
#include "Vector4.h"
#include "Enums.h"
//
//Interfaces
//
#include "IDrawable.h"
#include "IGameComponent.h"
#include "IGraphicsDeviceManager.h"
#include "IUpdateable.h"
//
//Namespaces
//
#include "Audio.h"
#include "Graphics.h"
#include "Media.h"
#endif //_XFX_