ProfilingList: add AddRange() function

This commit is contained in:
Colin McMillen 2020-11-30 15:11:31 -05:00
parent 88c8aa033b
commit 2b17501bab

View File

@ -41,6 +41,10 @@ namespace SemiColinGames {
// Everything below this point is boilerplate delegation to the underlying list.
public void AddRange(IEnumerable<T> collection) {
items.AddRange(collection);
}
public void Clear() {
items.Clear();
}