This commit is contained in:
Charles 2001-01-16 20:55:44 +00:00
parent 2c54c59bdd
commit 2ca7da9ba7
5 changed files with 69 additions and 2 deletions

View file

@ -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 );
}
/*****************************************************************************/

View file

@ -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: