Pre-resize fillparent

This commit is contained in:
2018-08-13 22:22:10 -04:00
parent 58fa6f0503
commit 353dc21750
95 changed files with 478 additions and 437 deletions
@@ -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