2001-07-21 21:06:07 +02:00
|
|
|
/***************/
|
|
|
|
/*** Fire FX ***/
|
|
|
|
/***************/
|
2001-07-21 18:47:51 +02:00
|
|
|
|
2001-07-21 21:06:07 +02:00
|
|
|
#ifndef __FX_FX_FIRE_HEADER__
|
|
|
|
#define __FX_FX_FIRE_HEADER__
|
2001-07-21 18:47:51 +02:00
|
|
|
|
|
|
|
#include "fx/fxbaseanim.h"
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
2001-07-21 21:06:07 +02:00
|
|
|
class CFXFire : public CFXBaseAnim
|
2001-07-21 18:47:51 +02:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
void init(DVECTOR const &Pos);
|
2001-07-21 21:06:07 +02:00
|
|
|
void render();
|
|
|
|
void SetSize(int W,int H) {SprW=W; SprH=H;}
|
2001-07-21 18:47:51 +02:00
|
|
|
protected:
|
2001-07-21 21:06:07 +02:00
|
|
|
|
|
|
|
int SprW,SprH;
|
2001-07-21 18:47:51 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|