Browse Source

ProfilingList: add AddRange() function

main
Colin McMillen 3 years ago
parent
commit
2b17501bab
  1. 4
      Shared/ProfilingList.cs

4
Shared/ProfilingList.cs

@ -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();
}

Loading…
Cancel
Save