kolibrios-fun/programs/games/LaserTank/trunk/render.h
ZblCoder fb06cf5f79 LaserTank game added
git-svn-id: svn://kolibrios.org@5276 a494cfbc-eb01-0410-851d-a64ba20cac60
2014-12-28 18:29:59 +00:00

15 lines
323 B
C++

class CKosRender
{
public:
RGB *buffer;
int width;
int height;
CKosRender(int width, int height);
~CKosRender(void);
void Draw(Point position);
void RenderImg(RGB *img, Point position, int width, int height);
int getPixel(int x, int y);
// void DrawImage(CKosImage *img, int x, int y, int angle);
};