SBSPSS/source/enemy/ngen.h

32 lines
692 B
C
Raw Normal View History

2001-04-19 01:12:24 +02:00
/*=========================================================================
ngen.h
Author: CRB
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __ENEMY_NGEN_H__
#define __ENEMY_NGEN_H__
2001-04-20 00:09:59 +02:00
#ifndef __ENEMY_NPC_H__
2001-04-19 01:12:24 +02:00
#include "enemy\npc.h"
#endif
class CNpcEnemyGenerator : public CNpcEnemy
{
public:
2001-07-04 00:17:20 +02:00
void shutdown();
void processEnemyCollision( CThing *thisThing );
2001-04-19 01:12:24 +02:00
void render();
2001-04-20 00:09:59 +02:00
void think(int _frames);
2001-07-04 00:17:20 +02:00
u8 canCollideWithEnemy() {return( false );}
CRECT const *getThinkBBox() {return( CThing::getThinkBBox() );}
2001-04-19 01:12:24 +02:00
};
#endif