This commit is contained in:
parent
74503a35a6
commit
2f804ee307
2 changed files with 99 additions and 0 deletions
27
source/fx/fxsmoke.h
Normal file
27
source/fx/fxsmoke.h
Normal file
|
@ -0,0 +1,27 @@
|
|||
/***********************/
|
||||
/*** Anim Base Class ***/
|
||||
/***********************/
|
||||
|
||||
#ifndef __FX_FX_SMOKE_PUFF_HEADER__
|
||||
#define __FX_FX_SMOKE_PUFF_HEADER__
|
||||
|
||||
#include "fx/fx.h"
|
||||
|
||||
/*****************************************************************************/
|
||||
class CFXSmokePuff : public CFX
|
||||
{
|
||||
public:
|
||||
|
||||
virtual void init(DVECTOR const &Pos);
|
||||
virtual void think(int _frames);
|
||||
virtual void render();
|
||||
|
||||
protected:
|
||||
POLY_FT4 *Frame;
|
||||
|
||||
s32 CurrentScale;
|
||||
s32 CurrentAngle;
|
||||
s16 RGBDec;
|
||||
};
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue