2010-10-01 02:36:21 +00:00
|
|
|
#import "FrameworkEnums.h"
|
2010-07-27 13:42:07 +00:00
|
|
|
#import "Protocols.h"
|
|
|
|
|
2010-07-22 15:20:04 +00:00
|
|
|
// Data structures
|
2010-12-08 04:57:47 +00:00
|
|
|
#import "XniPoint.h"
|
2010-07-22 16:13:55 +00:00
|
|
|
#import "Rectangle.h"
|
2010-07-27 17:42:29 +00:00
|
|
|
#import "Color.h"
|
2010-07-22 16:13:55 +00:00
|
|
|
|
2010-07-27 13:42:07 +00:00
|
|
|
// Game
|
|
|
|
#import "IGraphicsDeviceManager.h"
|
|
|
|
#import "Game.h"
|
|
|
|
#import "GameTime.h"
|
|
|
|
#import "GameServiceContainer.h"
|
2010-07-27 18:23:25 +00:00
|
|
|
#import "GraphicsDeviceManager.h"
|
2010-07-27 13:42:07 +00:00
|
|
|
|
|
|
|
// Game host
|
|
|
|
#import "GameHost.h"
|
2010-07-22 16:13:55 +00:00
|
|
|
#import "GameWindow.h"
|
2010-07-27 13:42:07 +00:00
|
|
|
|
|
|
|
// Game components
|
|
|
|
#import "IGameComponent.h"
|
|
|
|
#import "IUpdatable.h"
|
|
|
|
#import "IDrawable.h"
|
2010-10-19 13:31:39 +00:00
|
|
|
#import "GameComponent.h"
|
|
|
|
#import "DrawableGameComponent.h"
|
2010-07-27 13:42:07 +00:00
|
|
|
#import "GameComponentCollection.h"
|
2010-09-09 17:09:40 +00:00
|
|
|
#import "GameComponentCollectionEventArgs.h"
|
|
|
|
|
|
|
|
// Linear algebra
|
|
|
|
#import "Vector2.h"
|
|
|
|
#import "Vector3.h"
|
|
|
|
#import "Vector4.h"
|
|
|
|
#import "Quaternion.h"
|
|
|
|
#import "Matrix.h"
|