mirror of
https://github.com/TeamMidnightDust/VisualOverhaul.git
synced 2025-12-15 13:45:09 +01:00
- Instead of registering a block for the jukebox top, we can now render models without a block being registered at all - This opens up a lot of interesting new visuals in the near future :)
17 lines
493 B
Java
Executable File
17 lines
493 B
Java
Executable File
package eu.midnightdust.visualoverhaul;
|
|
|
|
import eu.midnightdust.visualoverhaul.config.VOConfig;
|
|
|
|
import static eu.midnightdust.visualoverhaul.VisualOverhaulCommon.MOD_ID;
|
|
|
|
public class VisualOverhaulClient {
|
|
public static int waterColor = 4159204;
|
|
public static int foliageColor = -8934609;
|
|
public static int grassColor = -8934609;
|
|
public static int potionColor = -13083194;
|
|
|
|
public static void onInitializeClient() {
|
|
VOConfig.init(MOD_ID, VOConfig.class);
|
|
}
|
|
}
|