Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Oct 30, 2017, 2:33:33 PM (7 years ago)
Author:
merholzl
Message:

final XMLPort things. Changes in spaceshipFlappyOrx

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/FlappyOrx_HS17/src/modules/flappyorx/FlappyOrxShip.h

    r11511 r11514  
    6262            virtual void rotateRoll(const Vector2& value) override;
    6363            inline void setSpeed( float speed )
    64                 { this->speed = speed; }
    65             inline void getSpeed( )
     64                { orxout() << "speed set: " << speed << endl; this->speed = speed; }
     65            inline float getSpeed( )
    6666                { return this->speed; }
    6767            inline void setGravity( float gravity )
    6868                { this->gravity = gravity; }
    69             inline void getGravity()
     69            inline float getGravity()
    7070                { return this->gravity; }
    71             inline void setSpeed( float UpwardThrust )
     71            inline void setUpwardThrust( float UpwardThrust )
    7272                { this->UpwardThrust = UpwardThrust; }
    73             inline void getSpeed()
     73            inline float getUpwardThrust()
    7474                { return this->UpwardThrust; }
    7575            virtual void updateLevel();
     76            virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode);
    7677
    7778        protected:
Note: See TracChangeset for help on using the changeset viewer.