SBSPSS/source/enemy/ndustdev.h

26 lines
584 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:
virtual void postInit();
protected:
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