2010-12-04 16:14:34 +00:00
|
|
|
|
/********************************************************
|
|
|
|
|
* GamerServicesComponent.h *
|
|
|
|
|
* *
|
|
|
|
|
* XFX GamerServicesComponent class definition file *
|
|
|
|
|
* Copyright <EFBFBD> XFX Team. All Rights Reserved *
|
|
|
|
|
********************************************************/
|
|
|
|
|
#ifndef _XFX_GAMERSERVICES_GAMERSERVICESCOMPONENT_
|
|
|
|
|
#define _XFX_GAMERSERVICES_GAMERSERVICESCOMPONENT_
|
|
|
|
|
|
|
|
|
|
#include "../Game.h"
|
|
|
|
|
|
|
|
|
|
namespace XFX
|
|
|
|
|
{
|
|
|
|
|
namespace GamerServices
|
|
|
|
|
{
|
2011-11-07 01:29:50 +00:00
|
|
|
|
// Creates a new GamerServicesComponent.
|
2012-09-28 20:36:02 +00:00
|
|
|
|
class GamerServicesComponent : public GameComponent
|
2010-12-04 16:14:34 +00:00
|
|
|
|
{
|
|
|
|
|
public:
|
2012-09-28 20:36:02 +00:00
|
|
|
|
GamerServicesComponent(Game * const game);
|
2010-12-04 16:14:34 +00:00
|
|
|
|
|
2012-09-28 20:36:02 +00:00
|
|
|
|
int GetType() const;
|
2010-12-04 16:14:34 +00:00
|
|
|
|
void Initialize();
|
|
|
|
|
void Update(GameTime gameTime);
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif //_XFX_GAMERSERVICES_GAMERSERVICESCOMPONENT_
|