SBSPSS/source/enemy/npuffa.h

31 lines
563 B
C
Raw Permalink Normal View History

2001-04-20 15:28:51 +02:00
/*=========================================================================
npuffa.h
Author: CRB
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __ENEMY_NPUFFA_H__
#define __ENEMY_NPUFFA_H__
class CNpcPuffaFishEnemy : public CNpcEnemy
{
protected:
2001-07-04 16:26:36 +02:00
bool processSensor();
void processClose( int _frames );
2001-04-20 15:28:51 +02:00
enum NPC_PUFFA_FISH_STATE
{
PUFFA_FISH_NO_INFLATE = 0,
PUFFA_FISH_TURN = 1,
PUFFA_FISH_INFLATE,
};
};
#endif