From 2b17501bab85862fa794d4e339fdfe39d9a40a25 Mon Sep 17 00:00:00 2001 From: Colin McMillen Date: Mon, 30 Nov 2020 15:11:31 -0500 Subject: [PATCH] ProfilingList: add AddRange() function --- Shared/ProfilingList.cs | 4 ++++ 1 file changed, 4 insertions(+) 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(); }