Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Oct 23, 2017, 12:23:21 AM (7 years ago)
Author:
patricwi
Message:

reverted commit from merge with tgidronFS16 because failed to compile

Location:
code/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • code/trunk

  • code/trunk/src/modules/hover/Hover.h

    r11493 r11495  
    2424 *   Co-authors:
    2525 *      Cyrill Burgener
    26  *      Tomer Gidron
    2726 *
    2827 */
     
    3837
    3938#include "HoverPrereqs.h"
    40 #include "HoverShip.h"
    4139
    4240#include <vector>
     
    4442#include "gametypes/Gametype.h"
    4543#include "HoverOrigin.h"
    46 #include "pickup/PickupSpawner.h"
    4744
    4845namespace orxonox
     
    5855                { this->origin_ = origin; }
    5956
    60             void start();
    61             void createFlags();
    62             void levelUp();
    63             void endLevel();
    64             void costLife();
    65 
    6657            inline int getNumberOfFlags() const
    6758                { return this->numberOfFlags_; }
    6859
    69             virtual Vector3 get3dCoordinates(int x, int y, float heightOffset);
    70 
    71             inline int getTotFlags() const
    72                 { return this->totFlags; }
    73 
    74             inline int getLives() const
    75                 { return this->lives; }
    76 
    77             inline int getLevel() const
    78                 { return this->level; }
    79 
    80             bool bLevelUpgradeHUD;
    81 
    8260        private:
    83 
    8461            WeakPtr<HoverOrigin> origin_;
    8562            std::vector<HoverFlag*> flags_;
    8663            int numberOfFlags_;
    8764            bool firstTick_;
    88             int level;
    89             int lives;
    90             int flagsTaken;
    91 
    92             int cellSize;
    93             int cellHeight;
    94             int numCells;
    95 
    96             int totFlags;
    97 
    98             std::vector<PickupSpawner*> pickupSpawners_;
    99 
    100             void toggleShowLevel(){bLevelUpgradeHUD = !bLevelUpgradeHUD;}
    101 
    102             Timer showLevelTimer;
    10365    };
    10466}
Note: See TracChangeset for help on using the changeset viewer.