Spaces:
Build error
Build error
package com.mojang.blaze3d.shaders; | |
import net.minecraftforge.api.distmarker.Dist; | |
import net.minecraftforge.api.distmarker.OnlyIn; | |
public enum FogShape { | |
SPHERE(0), | |
CYLINDER(1); | |
private final int index; | |
private FogShape(final int p_202323_) { | |
this.index = p_202323_; | |
} | |
public int getIndex() { | |
return this.index; | |
} | |
} |