示例#1
0
 public LightValue this[int x, int y, int z]
 {
     get { return(storage.Get(x, y, z)); }
     set { storage.Set(x, y, z, value); }
 }
示例#2
0
 protected override void SetVoxelID(int x, int y, int z, VoxelTypeID voxel)
 {
     storage.Set(x, y, z, voxel);
 }