Package mods.natura.plugins.waila

Source Code of mods.natura.plugins.waila.WailaRegistrar

package mods.natura.plugins.waila;

import mcp.mobius.waila.api.IWailaDataProvider;
import mcp.mobius.waila.api.IWailaRegistrar;
import mods.natura.blocks.crops.CropBlock;

public class WailaRegistrar
{
   
    public static void wailaCallback (IWailaRegistrar registrar) {
        IWailaDataProvider cropProvider = new NaturaCropDataProvider();
       
        registrar.registerStackProvider(cropProvider, CropBlock.class);
        registrar.registerBodyProvider(cropProvider, CropBlock.class);
    }

}
TOP

Related Classes of mods.natura.plugins.waila.WailaRegistrar

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.