Exemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="EntityProcessor"/> class.
 /// </summary>
 /// <param name="filter">The filter.</param>
 public EntityProcessor(Filter filter)
     : base()
 {
     this.entities = new Dictionary<ulong, Entity>();
     this.filter = filter;
 }
Exemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ParallelEntityProcessor"/> class.
 /// </summary>
 /// <param name="filter">The filter.</param>
 public ParallelEntityProcessor(Filter filter)
     : base(filter)
 {
 }