AddToDroppedItems()

Found in:

public void AddToDroppedItems(Item item){
    for(int i = 0; i < droppedItems; i++){
      if(!droppedItem[i].full){
        droppedItem[i].showItem(item);
        break;
      }
    }
  }


Comments

Leave a Reply

Your email address will not be published. Required fields are marked *