File tree 2 files changed +1
-18
lines changed
src/main/java/org/crafter
2 files changed +1
-18
lines changed Original file line number Diff line number Diff line change 10
10
public class Main {
11
11
12
12
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 " ;
14
14
private static final String VERSION_INFO = "Crafter " + DEVELOPMENT_CYCLE + " " + VERSION ;
15
15
private static final boolean PROTOTYPE_BUILD = true ;
16
16
@@ -36,7 +36,6 @@ public static void main(String[] args) {
36
36
Window .setClearColor (0.75f );
37
37
38
38
Chunk testChunk = new Chunk (0 ,0 );
39
- testChunk .debugZero ();
40
39
41
40
42
41
while (Window .shouldClose ()) {
Original file line number Diff line number Diff line change @@ -42,23 +42,7 @@ public int getY() {
42
42
43
43
44
44
//Todo: idea: metadata arraymap
45
- //Todo: bitshift light, block id, state
46
45
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
- }
62
46
63
47
64
48
}
You can’t perform that action at this time.
0 commit comments