Esempio n. 1
0
 public static bool TryGetInventory(this MyEntity thisEntity, out MyInventory inventory)
 {
     inventory = null;
     if (thisEntity.Components.Has <MyInventoryBase>())
     {
         inventory = thisEntity.GetInventory(0);
     }
     return(inventory != null);
 }