kolibrios/programs/games/LaserTank/trunk/image.h
ZblCoder b3e5e9a448 LaserTank path to file fix
git-svn-id: svn://kolibrios.org@5281 a494cfbc-eb01-0410-851d-a64ba20cac60
2014-12-28 20:52:04 +00:00

31 lines
660 B
C++

#include "smalllibc/kosSyst.h"
#define DRAW_NONE 0
#define DRAW_ALPHA 1
#define DRAW_ALPHA_ADD 2
class CKosImage
{
private:
bool isColor;
RGB color;
int getPixel(int x, int y);
Byte mode;
int frame;
int frameWidth;
int frameHeight;
public:
CKosImage(CKosRender *render, RGBA *buffer, int width, int height);
~CKosImage(void);
void Draw(Point position, float angle, RGB color);
void Draw(Point position, float angle);
void Draw(Point position, float angle, int frame);
void SetMode(int mode);
void SetFrameSize(int width, int height);
protected:
CKosRender *render;
RGBA *buffer;
int width;
int height;
};