home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AI Game Programming Wisdom
/
AIGameProgrammingWisdom.iso
/
SourceCode
/
06 General Architectures
/
04 Christian
/
done.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
2001-10-03
|
341 b
|
30 lines
#ifndef _Done_H_
#define _Done_H_
#include "ieexec.h"
class Character;
class Done : public IEExec
{
public:
Done();
void init ( IEOwner * owner );
bool update ();
IEOwner * getOwner ();
const char * getName();
private:
std::string m_name;
Character * m_owner;
};
#endif