This commit is contained in:
Paul 2001-06-01 18:59:33 +00:00
parent 6630244a6f
commit a7949471f1
23 changed files with 110 additions and 38 deletions

View file

@ -22,6 +22,10 @@
#include "thing/thing.h"
#endif
#ifndef __SOUND_SOUND_H__
#include "sound\sound.h"
#endif
/* Std Lib
------- */
@ -88,7 +92,9 @@ protected:
virtual void collidedWith(CThing *_thisThing);
private:
virtual CSoundMediator::SFXID sfxToPlayWhenCollected(){return CSoundMediator::SFX_ITEM__ANY_OTHER_ITEM;}
};
@ -123,6 +129,9 @@ protected:
int m_dontAutoPickUpUntilPlayerMovesOffMe;
int m_collidedWithPlayer;
private:
virtual CSoundMediator::SFXID sfxToPlayWhenCollected(){return CSoundMediator::SFX_ITEM__POWER_UP_ITEM;}
};