Minecraft world importer for Gamecraft.
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

11 satır
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. }