コード例 #1
0
 public void ImportTypes(VoxTypes voxTypes)
 {
     foreach (var kvp in voxTypes.EnumerateTypes())
     {
         var typeId               = kvp.Key;
         var typeContext          = kvp.Value;
         var typeContextAndTypeId = new TypeContextAndTypeId(typeId, typeContext);
         ImportType(typeContextAndTypeId);
     }
 }
コード例 #2
0
ファイル: Serialize.cs プロジェクト: the-dargon-project/vox
 public void ImportTypes(VoxTypes voxTypes)
 {
     typeRegistry.ImportTypes(voxTypes);
 }