SBSPSS/source/platform/pdrop.h
Charles 2c9d0f417e
2001-08-14 15:53:38 +00:00

33 lines
624 B
C++

/*=========================================================================
pdrop.h
Author: CRB
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __PLATFORM_PDROP_H__
#define __PLATFORM_PDROP_H__
#ifndef __PLATFORM_PLATFORM_H__
#include "platform\platform.h"
#endif
class CNpcDropPlatform : public CNpcPlatform
{
public:
void postInit();
bool alwaysThink() {return(true);}
protected:
void processMovement( int _frames );
u8 m_dropHit;
s32 m_initTimer;
};
#endif