add apart of comment in Chunk.java

This commit is contained in:
WangTingZheng
2020-07-26 00:50:11 +08:00
parent a3864ac263
commit d7447c8856
28 changed files with 966 additions and 824 deletions

16
src/minecraft/App.java Normal file
View File

@@ -0,0 +1,16 @@
import net.minecraft.util.math.MathHelper;
/**
* @author WangTingZheng
* @date 2020/7/20 20:43
* @features
*/
public class App {
public static void main(String[] args) {
byte[] te = new byte[255];
for (int i = 0; i < 255; i++) {
System.out.println("i="+i+" i >> 4 = "+(i>>4)+"| i & 15 = "+(i&15));
}
}
}