2011-10-24 11:22:32 +00:00
|
|
|
#import "FrameworkEnums.h"
|
|
|
|
#import "Protocols.h"
|
|
|
|
|
|
|
|
// Data structures
|
|
|
|
#import "XniPoint.h"
|
|
|
|
#import "Rectangle.h"
|
|
|
|
#import "Color.h"
|
|
|
|
|
|
|
|
// Game
|
|
|
|
#import "IGraphicsDeviceManager.h"
|
|
|
|
#import "Game.h"
|
|
|
|
#import "GameTime.h"
|
|
|
|
#import "GameServiceContainer.h"
|
|
|
|
#import "GraphicsDeviceManager.h"
|
|
|
|
|
|
|
|
// Game host
|
|
|
|
#import "GameHost.h"
|
|
|
|
#import "GameWindow.h"
|
|
|
|
|
|
|
|
// Game components
|
|
|
|
#import "IGameComponent.h"
|
|
|
|
#import "IUpdatable.h"
|
|
|
|
#import "IDrawable.h"
|
|
|
|
#import "GameComponent.h"
|
|
|
|
#import "DrawableGameComponent.h"
|
|
|
|
#import "GameComponentCollection.h"
|
|
|
|
#import "GameComponentCollectionEventArgs.h"
|
|
|
|
|
|
|
|
// Linear algebra
|
|
|
|
#import "Vector2.h"
|
|
|
|
#import "Vector3.h"
|
|
|
|
#import "Vector4.h"
|
|
|
|
#import "Quaternion.h"
|
2010-09-09 17:09:40 +00:00
|
|
|
#import "Matrix.h"
|