Examples of IEffect


Examples of com.forgeessentials.worldborder.Effects.IEffect

                try
                {
                    Class<?> c = Class.forName(penaltyBasePackage + "." + effect.toLowerCase());
                    try
                    {
                        IEffect pentalty = (IEffect) c.newInstance();
                        pentalty.registerConfig(config, cat + "." + effect);
                        effctList[i] = pentalty;
                        i++;
                    }
                    catch (Exception e)
                    {
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.