Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Sep 28, 2008, 5:15:55 PM (16 years ago)
Author:
rgrieder
Message:

TutorialShip compiles now. Still a stub.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/orxonox_tutorial/src/orxonox/objects/TutorialShip.cc

    r1847 r1852  
    5454    }
    5555
     56    bool TutorialShip::create()
     57    {
     58        return true;
     59    }
     60
    5661    TutorialShip::~TutorialShip()
    5762    {
    5863    }
    59 
    6064   
    61     void SpaceShip::setConfigValues()
     65    void TutorialShip::setConfigValues()
    6266    {
    6367        //SetConfigValue(bInvertYAxis_, false).description("Set this to true for joystick-like mouse behaviour (mouse up = ship down).");
     
    6670    }
    6771
     72    void TutorialShip::registerAllVariables()
     73    {
     74    }
    6875   
    6976    /**
     
    7380        @return The XML-element
    7481    */
    75     void SpaceShip::XMLPort(Element& xmlelement, XMLPort::Mode mode)
     82    void TutorialShip::XMLPort(Element& xmlelement, XMLPort::Mode mode)
    7683    {
    7784        SUPER(TutorialShip, XMLPort, xmlelement, mode);
     
    8188
    8289   
    83     void SpaceShip::tick(float dt)
     90    void TutorialShip::tick(float dt)
    8491    {
    8592        SUPER(TutorialShip, tick, dt);
    8693    }
    8794
     95    void TutorialShip::fire()
     96    {
     97    }
    8898}
Note: See TracChangeset for help on using the changeset viewer.