-
Joined
Oct 4, 2025
This file contains hidden or 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
// check the biome at a block position | |
#include "generator.h" | |
#include <stdio.h> | |
int main() | |
{ | |
// Set up a biome generator that reflects the biome generation of | |
// Minecraft 1.18. | |
Generator g; | |
setupGenerator(&g, MC_1_18, 0); |