2001-04-27 21:20:16 +02:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
fpatrick.cpp
|
|
|
|
|
|
|
|
Author: CRB
|
|
|
|
Created:
|
|
|
|
Project: Spongebob
|
|
|
|
Purpose:
|
|
|
|
|
|
|
|
Copyright (c) 2000 Climax Development Ltd
|
|
|
|
|
|
|
|
===========================================================================*/
|
|
|
|
|
|
|
|
#ifndef __FRIEND_FPATRICK_H__
|
|
|
|
#define __FRIEND_FPATRICK_H__
|
|
|
|
|
|
|
|
#ifndef __FRIEND_FRIEND_H__
|
|
|
|
#include "friend\friend.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
class CNpcPatrickFriend : public CNpcFriend
|
|
|
|
{
|
2001-05-03 00:49:59 +02:00
|
|
|
public:
|
|
|
|
virtual void postInit();
|
|
|
|
protected:
|
|
|
|
virtual void startConderversation();
|
|
|
|
|
|
|
|
FileEquate m_conversation;
|
2001-04-27 21:20:16 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|