Minecraft world importer for Gamecraft.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

11 行
208B

  1. using Unity.Mathematics;
  2. namespace GCMC
  3. {
  4. public struct Blocks
  5. {
  6. public float3 Start { get; set; }
  7. public float3 End { get; set; }
  8. public string Material { get; set; }
  9. }
  10. }