mirror of
https://github.com/thes3m/XNI
synced 2024-12-26 13:26:06 +01:00
17 lines
478 B
Objective-C
17 lines
478 B
Objective-C
@class Protocols;
|
|
|
|
// Data structures
|
|
#import "RectangleStruct.h"
|
|
@class Rectangle, Color;
|
|
|
|
// Game
|
|
#import "DisplayOrientation.h"
|
|
@protocol IGraphicsDeviceManager;
|
|
@class Game, GameTime, GameServiceContainer, GraphicsDeviceManager;
|
|
|
|
// Game host
|
|
@class GameHost, GameWindow, GameViewController, GameView;
|
|
|
|
// Game components
|
|
@protocol IGameComponent, IUpdatable, IDrawable;
|
|
@class GameComponent, DrawableGameComponent, GameComponentCollection, GameComponentCollectionEventArgs; |