Ejemplo n.º 1
0
 public abstract void Store(AbstractPathfinder pathfinder);
Ejemplo n.º 2
0
 public override void Store(AbstractPathfinder obj)
 {
     obj.Clear();
     _objectStack.Enqueue(obj as T);
 }
Ejemplo n.º 3
0
 private static void Store <T>(AbstractPathfinder pathfinder) where T : AbstractPathfinder, new()
 {
     GetPool <T>().Store(pathfinder);
 }