SBSPSS/source/friend/fplnkton.h

32 lines
591 B
C
Raw Normal View History

2001-05-03 14:53:03 +02:00
/*=========================================================================
fplnkton.cpp
Author: CRB
Created:
Project: Spongebob
Purpose:
Copyright (c) 2000 Climax Development Ltd
===========================================================================*/
#ifndef __FRIEND_FPLNKTON_H__
#define __FRIEND_FPLNKTON_H__
#ifndef __FRIEND_FRIEND_H__
#include "friend\friend.h"
#endif
class CNpcPlanktonFriend : public CNpcFriend
{
public:
2001-07-04 00:17:20 +02:00
void init();
void render();
void think(int _frames);
void shutdown();
2001-05-03 14:53:03 +02:00
protected:
2001-07-04 00:17:20 +02:00
void startConderversation();
2001-05-03 14:53:03 +02:00
};
#endif