IChunkColumnStorage.cs 234 B

123456789101112
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using MineCase.Block;
  5. namespace MineCase.World
  6. {
  7. public interface IChunkColumnStorage
  8. {
  9. BlockState this[int x, int y, int z] { get; set; }
  10. }
  11. }