This commit is contained in:
parent
08db90fda5
commit
d0115c86f5
6 changed files with 514 additions and 23 deletions
|
@ -43,6 +43,11 @@ public:
|
|||
DRAWMODE_ADDITIVE,
|
||||
}DRAWMODE;
|
||||
|
||||
enum
|
||||
{
|
||||
NORMAL_SCALE=256,
|
||||
};
|
||||
|
||||
void init();
|
||||
void shutdown();
|
||||
void render();
|
||||
|
@ -54,6 +59,7 @@ public:
|
|||
void setFrame(int _frame) {m_frame=_frame;}
|
||||
void setTheDrawMode(DRAWMODE _drawMode) {m_drawMode=_drawMode;}
|
||||
void setColour(u8 _r,u8 _g,u8 _b) {m_r=_r;m_g=_g;m_b=_b;}
|
||||
void setScale(int _scale) {m_scale=_scale;}
|
||||
|
||||
private:
|
||||
enum
|
||||
|
@ -72,6 +78,7 @@ private:
|
|||
int m_frame;
|
||||
DRAWMODE m_drawMode;
|
||||
u8 m_r,m_g,m_b;
|
||||
int m_scale;
|
||||
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue