Hi all!
I'm new to Forge modding.
I added a fluid in my mod, following the tutorial in the Tutorials section.
I tried adding the fluid's icons with the registerIcons() method, which takes a IconRegister parameter, but it gives me an error because in the new version IconRegister doesn't exist, the new one is IIconRegister, but when I try to use it, it doesn't get called.
I also tried using the setIcons() method in the Fluid class, doing myFluid.setIcons(new IIcon(), new IIcon()), but it gives me an error because it can't be instantiated.
How can I solve this problem?
P.S. : Sorry for my bad english.