mirror of
https://github.com/Halofreak1990/XFXFramework
synced 2024-12-26 13:49:34 +01:00
WARNING!!! This revision cannot compile correctly. It is updated to reflect the many changes within the XFX project.
44 lines
848 B
C
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_
|