Examples of IBasePlugin


Examples of com.mtbs3d.minecrift.api.IBasePlugin

      return (IBasePlugin)pluginField.get(Minecraft.getMinecraft());
    } catch (Exception e) { e.printStackTrace(); return null; }
  }
  @Override
  public String getDisplayString() {
    IBasePlugin plugin = getPlugin();
    if( plugin != null )
      return plugin.getName();
    return "None";
  }
View Full Code Here
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.