Esempio n. 1
0
 // Token: 0x06002763 RID: 10083 RVA: 0x0012C48C File Offset: 0x0012A88C
 public static void DropThingsNear(IntVec3 dropCenter, Map map, IEnumerable <Thing> things, int openDelay = 110, bool canInstaDropDuringInit = false, bool leaveSlag = false, bool canRoofPunch = true)
 {
     InfiltrateUtility.tempList.Clear();
     foreach (Thing item in things)
     {
         List <Thing> list = new List <Thing>
         {
             item
         };
         InfiltrateUtility.tempList.Add(list);
     }
     InfiltrateUtility.DropThingGroupsNear(dropCenter, map, InfiltrateUtility.tempList, openDelay, canInstaDropDuringInit, leaveSlag, canRoofPunch);
     InfiltrateUtility.tempList.Clear();
 }