SBSPSS/source/enemy/ndustdev.h

27 lines
623 B
C
Raw Normal View History

2001-04-24 16:31:13 +02:00
/*=========================================================================
ndustdev.h
Author: CRB
Created:
Project: Spongebob
Purpose:
Copyright (c) 2000 Climax Development Ltd
===========================================================================*/
#ifndef __ENEMY_NDUSTDEV_H__
#define __ENEMY_NDUSTDEV_H__
class CNpcDustDevilEnemy : public CNpcEnemy
{
public:
2001-07-04 00:17:20 +02:00
void postInit();
2001-04-24 16:31:13 +02:00
protected:
2001-05-31 23:31:37 +02:00
virtual s32 getFrameShift( int _frames );
2001-04-24 16:31:13 +02:00
virtual void processMovement( int _frames );
2001-04-26 18:18:31 +02:00
virtual void processMovementModifier( int _frames, s32 distX, s32 distY, s32 dist, s16 headingChange );
2001-04-24 16:31:13 +02:00
};
#endif