SBSPSS/source/fx/fxlaser.h
2001-06-18 16:31:24 +00:00

29 lines
509 B
C++

/*************/
/*** Laser ***/
/*************/
#ifndef __FX_FX_LASER_HEADER__
#define __FX_FX_LASER_HEADER__
#include "fx/fx.h"
/*****************************************************************************/
class CFXLaser : public CFX
{
public:
void init(DVECTOR const &Pos);
void think(int _frames);
void render();
void setOffset(DVECTOR &Pos);
void setTarget(DVECTOR &Pos);
void setRGB(u8 r,u8 g,u8 b) {R=r; G=g; B=g;}
protected:
DVECTOR Offset,Target;
u8 R,G,B;
};
#endif