SBSPSS/source/friend/fgary.h
Charles b6e036bf51
2001-07-03 22:17:20 +00:00

45 lines
929 B
C++

/*=========================================================================
fgary.cpp
Author: CRB
Created:
Project: Spongebob
Purpose:
Copyright (c) 2000 Climax Development Ltd
===========================================================================*/
#ifndef __FRIEND_FGARY_H__
#define __FRIEND_FGARY_H__
#ifndef __FRIEND_FRIEND_H__
#include "friend\friend.h"
#endif
class CNpcGaryFriend : public CNpcFriend
{
public:
void postInit();
void shutdown();
void think( int _frames );
void setupWaypoints( sThingActor *ThisActor );
bool alwaysThink() {return(true);}
DVECTOR const &getTriggerPos() {return( m_triggerPos );}
void start();
void stop();
void startLeft();
void startRight();
void render();
protected:
DVECTOR m_triggerPos;
u8 m_started;
u8 m_fallDeath;
s16 m_speed;
s16 m_drawRotation;
int m_soundId;
};
#endif