### Summary
Eliminates `IPooledEnumerable<T>` and `eable.Free()` from `Map` for items. This drastically simplifies code that iterates in range, for example:
```cs
foreach (var item in m.GetItemsInRange(5))
{
}
```
The code above no longer requires an eable and calling `Free()`.
|
||
|---|---|---|
| .. | ||
| AIControlMobileTarget.cs | ||
| AnimalAI.cs | ||
| ArcherAI.cs | ||
| BaseAI.cs | ||
| BerserkAI.cs | ||
| HealerAI.cs | ||
| MageAI.cs | ||
| MeleeAI.cs | ||
| OppositionGroup.cs | ||
| PredatorAI.cs | ||
| ThiefAI.cs | ||
| VendorAI.cs | ||