-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #55 from Querz/little-endian-io
Little endian io
- Loading branch information
Showing
15 changed files
with
726 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,23 @@ | ||
package net.querz.mca; | ||
|
||
public class LoadFlags { | ||
|
||
public static long BIOMES = 0x0001; | ||
public static long HEIGHTMAPS = 0x0002; | ||
public static long CARVING_MASKS = 0x0004; | ||
public static long ENTITIES = 0x0008; | ||
public static long TILE_ENTITIES = 0x0010; | ||
public static long TILE_TICKS = 0x0040; | ||
public static long LIQUID_TICKS = 0x0080; | ||
public static long TO_BE_TICKED = 0x0100; | ||
public static long POST_PROCESSING = 0x0200; | ||
public static long STRUCTURES = 0x0400; | ||
public static long BLOCK_LIGHTS = 0x0800; | ||
public static long BLOCK_STATES = 0x1000; | ||
public static long SKY_LIGHT = 0x2000; | ||
public static long LIGHTS = 0x4000; | ||
public static long LIQUIDS_TO_BE_TICKED = 0x8000; | ||
|
||
public static long ALL_DATA = 0xffffffffffffffffL; | ||
public final class LoadFlags { | ||
|
||
public static final long BIOMES = 0x00001; | ||
public static final long HEIGHTMAPS = 0x00002; | ||
public static final long CARVING_MASKS = 0x00004; | ||
public static final long ENTITIES = 0x00008; | ||
public static final long TILE_ENTITIES = 0x00010; | ||
public static final long TILE_TICKS = 0x00040; | ||
public static final long LIQUID_TICKS = 0x00080; | ||
public static final long TO_BE_TICKED = 0x00100; | ||
public static final long POST_PROCESSING = 0x00200; | ||
public static final long STRUCTURES = 0x00400; | ||
public static final long BLOCK_LIGHTS = 0x00800; | ||
public static final long BLOCK_STATES = 0x01000; | ||
public static final long SKY_LIGHT = 0x02000; | ||
public static final long LIGHTS = 0x04000; | ||
public static final long LIQUIDS_TO_BE_TICKED = 0x08000; | ||
public static final long RAW = 0x10000; | ||
|
||
public static final long ALL_DATA = 0xffffffffffffffffL; | ||
} |
Oops, something went wrong.