Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 1, 2008, 9:14:14 PM (15 years ago)
Author:
landauf
Message:

found more tabs in pickups ;)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/src/orxonox/objects/pickup/ShipEquipment.h

    r2089 r2094  
    1111
    1212
    13 namespace orxonox{
     13namespace orxonox
     14{
     15    class _OrxonoxExport ShipEquipment
     16    {
     17        public:
     18            void AddItem(Shipitem toAddItem);
     19            void RemoveItem(Shipitem toRemoveItem);
     20            bool CheckifValid(Shipitem toBeChecked);
     21            int
    1422
    15         class _OrxonoxExport ShipEquipment{
    16         public:
    17                 void AddItem(Shipitem toAddItem);
    18                 void RemoveItem(Shipitem toRemoveItem);
    19                 bool CheckifValid(Shipitem toBeChecked);
    20                 int
    21         private:
    22                 std::multimap<std::string, Item*> Equipment;
    23         };
     23        private:
     24            std::multimap<std::string, Item*> Equipment;
     25    };
    2426}
    2527
Note: See TracChangeset for help on using the changeset viewer.