SBSPSS/source/enemy/ngen.h

31 lines
633 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-04-26 23:29:44 +02:00
virtual void shutdown();
2001-04-24 21:03:06 +02:00
virtual 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-04-26 23:29:44 +02:00
virtual u8 canCollideWithEnemy() {return( false );}
2001-04-19 01:12:24 +02:00
};
#endif