Skip to content

Commit

Permalink
new: add Constants class
Browse files Browse the repository at this point in the history
  • Loading branch information
2No2Name committed Jan 20, 2021
1 parent 9574cbb commit d95e149
Showing 1 changed file with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package me.jellysquid.mods.lithium.common.util;

public class Constants {
//World height constants will have to be replaced with the worldheight changes in 1.17
public static final int WORLD_MIN_Y = 0;
public static final int WORLD_MAX_Y = 255;
public static final int WORLD_HEIGHT = 256;
//World height constants >> 4
public static final int MIN_CHUNK_Y = 0;
public static final int MAX_CHUNK_Y = 15;
}

0 comments on commit d95e149

Please sign in to comment.