SBSPSS/source/enemy/nprojjf.h

35 lines
620 B
C
Raw Normal View History

2001-05-04 22:11:05 +02:00
/*=========================================================================
nprojjf.h
Author: CRB
Created:
Project: Spongebob
Purpose:
Copyright (c) 2000 Climax Development Ltd
===========================================================================*/
#ifndef __ENEMY_NPROJJF_H__
#define __ENEMY_NPROJJF_H__
2001-05-17 21:28:08 +02:00
#ifndef __ENEMY_NSJFISH_H__
#include "enemy\nsjfish.h"
2001-05-04 22:11:05 +02:00
#endif
#ifndef __SPR_SPRITES_H__
#include <sprites.h>
#endif
2001-05-17 21:28:08 +02:00
class CNpcSmallJellyfishProjectileEnemy : public CNpcSmallJellyfishEnemy
2001-05-04 22:11:05 +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);
2001-05-04 22:11:05 +02:00
protected:
s32 m_lifetime;
};
#endif