SBSPSS/source/friend/fsquid.h

32 lines
581 B
C
Raw Normal View History

2001-04-27 17:09:10 +02:00
/*=========================================================================
fsquid.cpp
Author: CRB
Created:
Project: Spongebob
Purpose:
Copyright (c) 2000 Climax Development Ltd
===========================================================================*/
#ifndef __FRIEND_FSQUID_H__
#define __FRIEND_FSQUID_H__
#ifndef __FRIEND_FRIEND_H__
#include "friend\friend.h"
#endif
class CNpcSquidwardFriend : public CNpcFriend
{
2001-05-01 21:36:24 +02:00
public:
2001-07-04 16:26:36 +02:00
void think(int _frames);
2001-07-04 00:17:20 +02:00
void postInit();
2001-05-03 00:49:59 +02:00
protected:
2001-07-04 16:26:36 +02:00
void startConderversation();
2001-05-03 00:49:59 +02:00
FileEquate m_conversation;
2001-04-27 17:09:10 +02:00
};
#endif