Skip to content

Commit a72e8cf

Browse files
committed
Clean and update to 0.0.2
1 parent 503c02d commit a72e8cf

File tree

2 files changed

+1
-18
lines changed

2 files changed

+1
-18
lines changed

src/main/java/org/crafter/Main.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
public class Main {
1111

1212
private static final String DEVELOPMENT_CYCLE = "Pre-Alpha";
13-
private static final String VERSION = "v0.0.1";
13+
private static final String VERSION = "v0.0.2";
1414
private static final String VERSION_INFO = "Crafter " + DEVELOPMENT_CYCLE + " " + VERSION;
1515
private static final boolean PROTOTYPE_BUILD = true;
1616

@@ -36,7 +36,6 @@ public static void main(String[] args) {
3636
Window.setClearColor(0.75f);
3737

3838
Chunk testChunk = new Chunk(0,0);
39-
testChunk.debugZero();
4039

4140

4241
while(Window.shouldClose()) {

src/main/java/org/crafter/engine/chunk/Chunk.java

-16
Original file line numberDiff line numberDiff line change
@@ -42,23 +42,7 @@ public int getY() {
4242

4343

4444
//Todo: idea: metadata arraymap
45-
//Todo: bitshift light, block id, state
4645

47-
public void debugZero() {
48-
// int test = internalSetBlockID(0, 65_535);
49-
50-
// numberTools.printBits(test);
51-
// System.out.println(getBlockID(test));
52-
// numberTools.printBits(getBlockID(test));
53-
54-
// int test = internalSetBlockLight(0, 6);
55-
//
56-
// test = internalSetBlockState(test, 9);
57-
//
58-
// printBits(test);
59-
//
60-
// printBits(getBlockState(test));
61-
}
6246

6347

6448
}

0 commit comments

Comments
 (0)