예제 #1
0
 private void LoadSimulationDefinitions(IReader reader)
 {
     if (_tags != null && _buildInfo.Layouts.HasLayout("scnr") && _buildInfo.Layouts.HasLayout("simulation definition table element"))
     {
         ITag scnr = _tags.FindTagByGroup("scnr");
         if (scnr != null)
         {
             _simulationDefinitions = new SecondGenSimulationDefinitionTable(scnr, _tags, reader, MetaArea, Allocator, _buildInfo);
         }
     }
 }
예제 #2
0
 private void LoadSimulationDefinitions(IReader reader)
 {
     if (_tags != null && _buildInfo.Layouts.HasLayout("scnr") && _buildInfo.Layouts.HasLayout("simulation definition table element"))
     {
         ITag scnr = _tags.GetGlobalTag(CharConstant.FromString("scnr"));
         if (scnr != null)
         {
             _simulationDefinitions = new SecondGenSimulationDefinitionTable(scnr, _tags, reader, MetaArea, Allocator, _buildInfo);
         }
     }
 }