This commit is contained in:
parent
96801c6b4c
commit
c574dd3894
2 changed files with 89 additions and 0 deletions
23
source/fx/fxgeyser.h
Normal file
23
source/fx/fxgeyser.h
Normal file
|
@ -0,0 +1,23 @@
|
|||
/***********************/
|
||||
/*** Anim Base Class ***/
|
||||
/***********************/
|
||||
|
||||
#ifndef __FX_FX_ATTACH_ANIM_HEADER__
|
||||
#define __FX_FX_ATTACH_ANIM_HEADER__
|
||||
|
||||
#include "fx/fx.h"
|
||||
#include "fx/fxbaseAnim.h"
|
||||
|
||||
/*****************************************************************************/
|
||||
class CFXAttachAnim : public CFXBaseAnim
|
||||
{
|
||||
public:
|
||||
virtual void init(DVECTOR const &Pos);
|
||||
virtual void thing(int Frames);
|
||||
virtual void render();
|
||||
|
||||
protected:
|
||||
DVECTOR Pos2;
|
||||
};
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue