SBSPSS/source/platform/pfallnor.h

36 lines
768 B
C
Raw Normal View History

2001-05-03 21:01:23 +02:00
/*=========================================================================
pfallnor.h
Author: CRB
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __PLATFORM_PFALLNOR_H__
#define __PLATFORM_PFALLNOR_H__
#ifndef __PLATFORM_PLATFORM_H__
#include "platform\platform.h"
#endif
class CNpcFallingNoRespawnPlatform : public CNpcPlatform
{
public:
virtual void postInit();
2001-05-22 23:42:39 +02:00
virtual CRECT const *getThinkBBox();
2001-05-30 20:31:57 +02:00
virtual int checkCollisionAgainst(CThing *_thisThing, int _frames);
2001-05-03 21:01:23 +02:00
protected:
2001-05-30 20:31:57 +02:00
virtual void render();
2001-05-03 21:01:23 +02:00
virtual void processMovement( int _frames );
2001-05-30 20:31:57 +02:00
u8 m_spinFinish;
s16 m_rotation;
u8 m_bounceDir;
2001-05-03 21:01:23 +02:00
};
#endif