SBSPSS/source/enemy/nbblob.h

27 lines
484 B
C
Raw Normal View History

2001-04-20 15:10:40 +02:00
/*=========================================================================
nbblob.h
Author: CRB
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __ENEMY_NBBLOB_H__
#define __ENEMY_NBBLOB_H__
class CNpcBallBlobEnemy : public CNpcEnemy
{
2001-04-20 22:22:16 +02:00
public:
2001-07-04 00:17:20 +02:00
void postInit();
2001-04-20 15:10:40 +02:00
protected:
2001-07-04 16:26:36 +02:00
void processMovement( int _frames );
2001-04-23 15:51:25 +02:00
DVECTOR m_velocity;
2001-04-20 15:10:40 +02:00
};
#endif