Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 28, 2008, 2:00:22 PM (15 years ago)
Author:
dsommer
Message:

private umgangen aber er liesst irgendwie die libs nicht :S

File:
1 edited

Legend:

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

    r2290 r2293  
     1#include "Item.h"
    12
    2 #include "ShipEquipment.h"
    33
    44namespace orxonox
    55{
    6         bool insert(Item* item)
     6        bool ShipEquipment::insert(Item* item)
    77        {
    88        if(checkSlot(player)==true)
     
    1111                COUT(3) << "swap?" << std::endl;
    1212       
    13 
    14 
    15 
    16 
    1713        };
    18         bool erase (Item* item)
     14        bool ShipEquipment::erase (Item* item)
    1915        {
    2016        if(Equipment.find(item->getName())!= Equipment.end())
     
    2824                return false;
    2925        };
    30         bool checkSlot(Item* item) const
     26        bool ShipEquipment::checkSlot(Item* item) const
    3127        {
    3228        std::multimap<std::string,Item*>::iterator it;
Note: See TracChangeset for help on using the changeset viewer.