Minecraft world importer for Gamecraft.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

9 lines
162B

  1. namespace GCMC
  2. {
  3. public struct Location
  4. {
  5. public int X { get; set; }
  6. public int Y { get; set; }
  7. public int Z { get; set; }
  8. }
  9. }