Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Apr 14, 2016, 4:05:48 PM (8 years ago)
Author:
tgidron
Message:

Pickups + Flags HUD

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/tgidronFS16/src/modules/hover/HoverOrigin.h

    r11099 r11168  
    6666                { return this->cellHeight_; }
    6767
     68            inline void setPickup(std::string pickuptemplate)
     69                { this->pickupTemplate_ = pickuptemplate; }
     70            inline std::string getPickup() const
     71                { return this->pickupTemplate_; }
     72
     73            inline void setPickupMeta(std::string pickupbase)
     74                { this->pickupMeta_ = pickupbase; }
     75            inline std::string getPickupMeta() const
     76                { return this->pickupMeta_; }
     77
    6878        private:
    6979            void checkGametype();
     
    7282            int cellSize_;
    7383            int cellHeight_;
     84            std::string pickupTemplate_;
     85            std::string pickupMeta_;
    7486    };
    7587}
Note: See TracChangeset for help on using the changeset viewer.