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

32 lines
591 B
C++

/*=========================================================================
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:
void init();
void render();
void think(int _frames);
void shutdown();
protected:
void startConderversation();
};
#endif