SBSPSS/source/platform/pbounce.h

34 lines
649 B
C
Raw Normal View History

2001-05-01 22:29:42 +02:00
/*=========================================================================
pbounce.h
Author: CRB
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __PLATFORM_PBOUNCE_H__
#define __PLATFORM_PBOUNCE_H__
#ifndef __PLATFORM_PLATFORM_H__
#include "platform\platform.h"
#endif
class CNpcBouncePlatform : public CNpcPlatform
{
2001-05-02 16:29:10 +02:00
public:
2001-07-04 00:17:20 +02:00
void postInit();
2001-07-04 16:26:36 +02:00
void think( int _frames );
void render();
2001-05-02 16:29:10 +02:00
protected:
2001-07-16 17:33:38 +02:00
virtual void collidedWith(CThing *_thisThing);
2001-05-02 16:29:10 +02:00
s32 m_vertScale;
s32 m_vertVelocity;
2001-05-01 22:29:42 +02:00
};
#endif