SBSPSS/source/enemy/nprojjf.h

35 lines
632 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:
virtual void postInit();
virtual void think(int _frames);
protected:
s32 m_lifetime;
};
#endif