This commit is contained in:
parent
2c54c59bdd
commit
2ca7da9ba7
5 changed files with 69 additions and 2 deletions
|
@ -129,3 +129,15 @@ CPlayer * CGameScene::getPlayer()
|
|||
}
|
||||
|
||||
/*****************************************************************************/
|
||||
void CGameScene::sendEvent( GAME_EVENT evt, CThing *sourceThing )
|
||||
{
|
||||
CThing::processEventAllThings(evt, sourceThing);
|
||||
}
|
||||
|
||||
/*****************************************************************************/
|
||||
CConversation * CGameScene::getConversation ()
|
||||
{
|
||||
return( &m_conversation );
|
||||
}
|
||||
|
||||
/*****************************************************************************/
|
||||
|
|
|
@ -12,6 +12,14 @@
|
|||
#include "game\convo.h"
|
||||
#endif
|
||||
|
||||
#ifndef __GAME_EVENT_H__
|
||||
#include "game\event.h"
|
||||
#endif
|
||||
|
||||
#ifndef __GAME_THING_H__
|
||||
#include "game\thing.h"
|
||||
#endif
|
||||
|
||||
/*****************************************************************************/
|
||||
class FontBank;
|
||||
|
||||
|
@ -31,6 +39,8 @@ virtual ~CGameScene() {;}
|
|||
|
||||
static MATRIX *GetCamMtx() {return(&CamMtx);}
|
||||
class CPlayer *getPlayer();
|
||||
CConversation *getConversation();
|
||||
void sendEvent( GAME_EVENT evt, CThing *sourceThing );
|
||||
|
||||
private:
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue