home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AI Game Programming Wisdom
/
AIGameProgrammingWisdom.iso
/
SourceCode
/
06 General Architectures
/
04 Christian
/
anim.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-09-15
|
265 b
|
22 lines
#ifndef _ANIM_H_
#define _ANIM_H_
class Anim
{
public:
Anim( float time, bool loop = false );
void start ();
bool update ();
bool done ();
private:
float m_time;
double m_clock;
float m_loop;
};
#endif