diff --git a/Shared/ProfilingList.cs b/Shared/ProfilingList.cs index 9c53cd6..df046ce 100644 --- a/Shared/ProfilingList.cs +++ b/Shared/ProfilingList.cs @@ -41,6 +41,10 @@ namespace SemiColinGames { // Everything below this point is boilerplate delegation to the underlying list. + public void AddRange(IEnumerable collection) { + items.AddRange(collection); + } + public void Clear() { items.Clear(); }