SBSPSS/source/enemy/nshell.h
Charles 320876b044
2001-05-16 19:45:43 +00:00

29 lines
516 B
C++

/*=========================================================================
nshell.h
Author: CRB
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __ENEMY_NSHELL_H__
#define __ENEMY_NSHELL_H__
#ifndef __ENEMY_NPC_H__
#include "enemy\npc.h"
#endif
class CNpcShellEnemy : public CNpcEnemy
{
public:
virtual void render();
virtual int getFrameCount() {return( 1 );}
};
#endif