24 lines
403 B
C++
24 lines
403 B
C++
/*=========================================================================
|
|
|
|
nghost.h
|
|
|
|
Author: CRB
|
|
Created:
|
|
Project: Spongebob
|
|
Purpose:
|
|
|
|
Copyright (c) 2001 Climax Development Ltd
|
|
|
|
===========================================================================*/
|
|
|
|
#ifndef __ENEMY_NGHOST_H__
|
|
#define __ENEMY_NGHOST_H__
|
|
|
|
class CNpcGhostEnemy : public CNpcEnemy
|
|
{
|
|
public:
|
|
void render();
|
|
};
|
|
|
|
#endif
|