private Mother3Project(Block romData, Mother3RomConfig romConfig,
                        Mother3ProjectSettings projectSettings)
 {
     RomData         = romData;
     RomConfig       = romConfig;
     ProjectSettings = projectSettings;
     Modules         = new Mother3ModuleCollection(romConfig);
 }
Beispiel #2
0
 protected Mother3Module(Mother3RomConfig romConfig)
 {
     RomConfig = romConfig;
 }
 public Mother3ModuleCollection(Mother3RomConfig romConfig)
 {
     Data = new DataModule(romConfig);
     Text = new TextModule(romConfig);
 }