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