This commit is contained in:
Charles 2001-05-09 15:45:36 +00:00
parent 615305eced
commit 46a6e47cde
2 changed files with 104 additions and 0 deletions

28
source/enemy/nmjback.h Normal file
View file

@ -0,0 +1,28 @@
/*=========================================================================
nmjback.h
Author: CRB
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __ENEMY_NMJBACK_H__
#define __ENEMY_NMJBACK_H__
#ifndef __ENEMY_NPC_H__
#include "enemy\npc.h"
#endif
class CNpcMotherJellyfishBackground : public CNpcEnemy
{
public:
virtual void postInit();
void render();
};
#endif