SBSPSS/source/enemy/ngen.h
Charles bc760c2dd3
2001-04-19 22:09:59 +00:00

28 lines
No EOL
484 B
C++

/*=========================================================================
ngen.h
Author: CRB
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __ENEMY_NGEN_H__
#define __ENEMY_NGEN_H__
#ifndef __ENEMY_NPC_H__
#include "enemy\npc.h"
#endif
class CNpcEnemyGenerator : public CNpcEnemy
{
public:
void render();
void think(int _frames);
};
#endif