예제 #1
0
 public void DisconnectInventory()
 {
     connectedInventory = null;
 }
예제 #2
0
 public void SetInventory(Inventory newInventory)
 {
     currentInventory = newInventory;
 }
예제 #3
0
 public void ConnectInventory(Inventory newConnection)
 {
     if (connectedInventory == null)
         connectedInventory = newConnection;
 }