mirror of
https://github.com/Halofreak1990/XFXFramework
synced 2024-12-26 13:49:34 +01:00
Replaced all copyright symbols with (c) to improve cross-platform reading Added classes to XFX::Audio namespace Added and updated classes in XFX::Graphics namespace Updated event function signature Replaced const char* ToString() with const String& ToString()
31 lines
608 B
C
31 lines
608 B
C
/********************************************************
|
|
* XFX.h *
|
|
* *
|
|
* XFX namespace include file *
|
|
* Copyright (c) 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"
|
|
//
|
|
//Enums
|
|
//
|
|
#include "Enums.h"
|
|
|
|
#endif //_XFX_
|