2010-12-04 16:14:34 +00:00
|
|
|
|
/********************************************************
|
|
|
|
|
* GameComponentCollectionEventArgs.h *
|
|
|
|
|
* *
|
|
|
|
|
* XFX GameComponentCollectionEventArgs definition *
|
|
|
|
|
* Copyright <EFBFBD> XFX Team. All Rights Reserved *
|
|
|
|
|
********************************************************/
|
|
|
|
|
#ifndef _XFX_GAMECOMPONENTCOLLECTIONEVENTARGS_
|
|
|
|
|
#define _XFX_GAMECOMPONENTCOLLECTIONEVENTARGS_
|
|
|
|
|
|
|
|
|
|
#include "Interfaces.h"
|
2011-11-07 01:29:50 +00:00
|
|
|
|
#include <System/EventArgs.h>
|
2010-12-04 16:14:34 +00:00
|
|
|
|
|
|
|
|
|
namespace XFX
|
|
|
|
|
{
|
2011-11-07 01:29:50 +00:00
|
|
|
|
// Arguments used with events from the GameComponentCollection.
|
|
|
|
|
class GameComponentCollectionEventArgs : public EventArgs, virtual Object
|
2010-12-04 16:14:34 +00:00
|
|
|
|
{
|
|
|
|
|
private:
|
|
|
|
|
IGameComponent _gameComponent;
|
|
|
|
|
|
|
|
|
|
public:
|
2011-11-07 01:29:50 +00:00
|
|
|
|
IGameComponent getGameComponent();
|
2010-12-04 16:14:34 +00:00
|
|
|
|
|
|
|
|
|
GameComponentCollectionEventArgs(IGameComponent gameComponent);
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif //_XFX_GAMECOMPONENTCOLLECTIONEVENTARGS_
|