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