コード例 #1
0
ファイル: Book.cs プロジェクト: quercitron/questbook
 public Book(string filePath, IGraphCreator graphCreator, string name)
     : this(name, graphCreator.CreateGraphFromFile(filePath))
 {
     m_GraphCreator = graphCreator;
 }
コード例 #2
0
ファイル: Book.cs プロジェクト: quercitron/questbook
 public Book(string filePath, IGraphCreator graphCreator, string name)
     : this(name, graphCreator.CreateGraphFromFile(filePath))
 {
     m_GraphCreator = graphCreator;
 }
コード例 #3
0
ファイル: Book.cs プロジェクト: quercitron/questbook
 public void Update(string filePath)
 {
     Update(m_GraphCreator.CreateGraphFromFile(filePath));
 }