Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 10, 2008, 8:24:53 PM (16 years ago)
Author:
dsommer
Message:

teilweise doxy geaddet und weitere test instanzen

File:
1 edited

Legend:

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

    r2389 r2397  
    1818{
    1919    class Item;
     20/**
     21@brief
     22    ShipEquipment is the inventory of a player. It's part of the Pawn class.
    2023
     24*/
    2125    class _OrxonoxExport ShipEquipment
    2226    {
     
    4044        {this->player = setplayer;}
    4145        private:
    42             Pawn* player;
    43             std::multimap<std::string, Item*> Equipment;
    44             std::multimap<std::string, Item*> Usable;
    45             std::multimap<std::string, Item*> Trunk;
     46            Pawn* player;//!< Is a pointer to the belonging player
     47            std::multimap<std::string, Item*> Equipment;//!< the Equipment for permanent Items
     48            std::multimap<std::string, Item*> Usable;//!< Where Usables are stored
     49            std::multimap<std::string, Item*> Trunk;//!< Every other Item is stored here
    4650    };
    4751}
Note: See TracChangeset for help on using the changeset viewer.