Package com.kellerkindt.scs

Examples of com.kellerkindt.scs.ShowCaseStandalone$ShowCaseStandalonePluginListener


    // Showcase Standalone
    availableFilters.add(new BlacklistFilter("ShowCaseStandalone") {
      @Override
      public boolean isFiltered(Entity element) {
        if (element instanceof Item) {
          ShowCaseStandalone plugin = (ShowCaseStandalone) getPlugin();
          return plugin.getShopHandler().isShopItem((Item) element);
        }
        return false;
      }
    });
    // HyperConomy
View Full Code Here

TOP

Related Classes of com.kellerkindt.scs.ShowCaseStandalone$ShowCaseStandalonePluginListener

Copyright © 2018 www.massapicom. 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.