ProfilingList: add AddRange() function
This commit is contained in:
parent
88c8aa033b
commit
2b17501bab
@ -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…
Reference in New Issue
Block a user