Beispiel #1
0
 public void Add(sc_item item)
 {
     if (list.Count < 6) //Momentan nur sechs slots sind angezeigt
     {
         list.Add(item);
     }
     updatePanelSlots();
 }
Beispiel #2
0
 public void Remove(sc_item item)
 {
     list.Remove(item);
     updatePanelSlots();
 }