コード例 #1
0
 public DataReader(NPCDataRepo npcDataRepo)
 {
     this.npcDataRepo = npcDataRepo;
     for (int i = 0; i < fileList.Count; i++)
     {
         ReadFile(folderLocation + fileList[i] + fileAppend, i);
     }
 }
コード例 #2
0
 public NPCGenerator()
 {
     InitializeComponent();
     dView         = DataGridView_dView;
     npcDataRepo   = new NPCDataRepo();
     npcList       = new List <NPCData>();
     dataReader    = new DataReader(npcDataRepo);
     dataProcessor = new DataProcessor(npcDataRepo);
     dataWriter    = new DataWriter();
     tableRows     = new List <string[]>();
 }
コード例 #3
0
 public DataProcessor(NPCDataRepo npcDataRepo)
 {
     this.npcDataRepo = npcDataRepo;
 }