SBSPSS/source/enemy/nocto.h

30 lines
598 B
C
Raw Normal View History

2001-04-20 14:47:50 +02:00
/*=========================================================================
nocto.h
Author: CRB
Created:
Project: Spongebob
Purpose:
Copyright (c) 2000 Climax Development Ltd
===========================================================================*/
#ifndef __ENEMY_NOCTO_H__
#define __ENEMY_NOCTO_H__
class CNpcBabyOctopusEnemy : public CNpcEnemy
{
protected:
2001-07-04 16:26:36 +02:00
bool processSensor();
void processClose( int _frames );
void processMovementModifier( int _frames, s32 distX, s32 distY, s32 dist, s16 headingChange );
2001-04-20 22:22:16 +02:00
enum
{
NPC_OCTOPUS_RESISTANCE = 64,
};
2001-04-20 14:47:50 +02:00
};
#endif