コード例 #1
0
ファイル: EntityMatcher.cs プロジェクト: RexMorgan/Commander
 public void BuildChains(TypePool pool, CommandGraph graph)
 {
     pool
         .TypesMatching(TypeFilters.Matches)
         .Each(t =>
                   {
                       graph.AddChainForNew(new CommandChain(t));
                       graph.AddChainForExisting(new CommandChain(t));
                   });
 }