SBSPSS/source/enemy/nsdart.h

26 lines
518 B
C
Raw Normal View History

2001-04-21 18:38:15 +02:00
/*=========================================================================
nsdart.h
Author: CRB
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __ENEMY_NSDART_H__
#define __ENEMY_NSDART_H__
class CNpcSquidDartEnemy : public CNpcEnemy
{
public:
void render();
virtual int getFrameCount() {return( 4 );}
2001-04-30 21:57:49 +02:00
virtual u8 canCollideWithEnemy() {return( false );}
2001-04-21 18:38:15 +02:00
};
#endif