Example #1
0
 // adds item to room
 public void addItem(Item newItem) {
   if (newItem != null) {
     items.add(newItem);
   }
 }