Pre-resize fillparent
This commit is contained in:
@@ -19,7 +19,7 @@ namespace VideoEngine {
|
||||
cAnimatedSprite( const cAnimatedSprite& copy );
|
||||
~cAnimatedSprite();
|
||||
|
||||
///Functions
|
||||
/// Functions
|
||||
/* Runs down the image */
|
||||
void UptoDown();
|
||||
/* Runs up the image */
|
||||
@@ -29,7 +29,7 @@ namespace VideoEngine {
|
||||
/* Runs Left of the image */
|
||||
void RighttoLeft();
|
||||
|
||||
///Sets
|
||||
/// Sets
|
||||
/* Sets the x increment */
|
||||
void setXIncrement( const unsigned long int x );
|
||||
/* Sets the y increment */
|
||||
@@ -39,7 +39,7 @@ namespace VideoEngine {
|
||||
/* Sets the speed of going from one frame to the next */
|
||||
void setFPS( const unsigned long int fps = 16 );
|
||||
|
||||
///Gets
|
||||
/// Gets
|
||||
/* Gets the x increment */
|
||||
const unsigned long int getXIncrement() const;
|
||||
/* Gets the y increment */
|
||||
@@ -55,15 +55,15 @@ namespace VideoEngine {
|
||||
void AddTimeandRate();
|
||||
|
||||
private:
|
||||
///Variables
|
||||
unsigned long int m_xIncrement;// = 0
|
||||
unsigned long int m_yIncrement;// = 0
|
||||
/// Variables
|
||||
unsigned long int m_xIncrement;/// = 0
|
||||
unsigned long int m_yIncrement;/// = 0
|
||||
|
||||
unsigned long int m_fps;// = 16
|
||||
unsigned long int m_fps;/// = 16
|
||||
|
||||
unsigned long int m_nextTime;// = 0
|
||||
unsigned long int m_nextTime;/// = 0
|
||||
|
||||
unsigned long int m_RATE;// = 0
|
||||
unsigned long int m_RATE;/// = 0
|
||||
|
||||
};/// END CLASS DEFINITION cAnimatedSprite
|
||||
}/// END NAMESPACE DEFINITION VideoEngine
|
||||
|
||||
Reference in New Issue
Block a user