This commit is contained in:
Daveo 2001-06-18 14:22:37 +00:00
parent 913de40b7d
commit 338c9793d8
2 changed files with 69 additions and 0 deletions

21
source/fx/fxlaser.h Normal file
View file

@ -0,0 +1,21 @@
/*****************/
/*** Thwack!!! ***/
/*****************/
#ifndef __FX_FX_THWACK_HEADER__
#define __FX_FX_THWACK_HEADER__
#include "fx/fx.h"
/*****************************************************************************/
class CFXThwack : public CFX
{
public:
virtual void init(DVECTOR const &Pos);
virtual void render();
protected:
u16 Angle,Scale;
};
#endif