SBSPSS/source/enemy/nfskull.h

34 lines
653 B
C
Raw Normal View History

2001-04-20 16:48:15 +02:00
/*=========================================================================
nfskull.h
Author: CRB
Created:
Project: Spongebob
Purpose:
Copyright (c) 2000 Climax Development Ltd
===========================================================================*/
#ifndef __ENEMY_NFSKULL_H__
#define __ENEMY_NFSKULL_H__
class CNpcFlamingSkullEnemy : public CNpcEnemy
{
2001-07-04 00:17:20 +02:00
void postInit();
2001-04-20 16:48:15 +02:00
protected:
2001-07-04 16:26:36 +02:00
void processEnemyCollision( CThing *thisThing );
bool processSensor();
void processClose( int _frames );
2001-04-20 16:48:15 +02:00
2001-05-16 21:04:40 +02:00
s32 m_fireHeading;
2001-04-20 16:48:15 +02:00
enum NPC_FLAMING_SKULL_STATE
{
FLAMING_SKULL_ATTACK = 0,
FLAMING_SKULL_RETURN = 1,
};
};
#endif