Replace (and remove) custom Set<T> with HashSet<T>

This commit is contained in:
Pavlos Touboulidis
2014-04-27 00:01:33 +03:00
parent c28faffa45
commit 45944a053c
3 changed files with 1 additions and 58 deletions

View File

@@ -27,7 +27,7 @@ namespace OpenRA
public class World
{
internal TraitDictionary traitDict = new TraitDictionary();
Set<Actor> actors = new Set<Actor>();
HashSet<Actor> actors = new HashSet<Actor>();
List<IEffect> effects = new List<IEffect>();
Queue<Action<World>> frameEndActions = new Queue<Action<World>>();