Package com.kellerkindt.scs.events

Examples of com.kellerkindt.scs.events.ShowCaseInfoEvent


      event = new ShowCaseInteractEvent(player, shopEvent, todo, pie.getAction() == Action.RIGHT_CLICK_BLOCK);
   
     
    } else if (shopEvent != null && action == Action.LEFT_CLICK_BLOCK) {
      // info event
      event = new ShowCaseInfoEvent(player, shopEvent);
     
     
    } else if (todo != null && todo.Type == Type.CREATE && shopTodo != null) {
      // create event
      shopTodo.setLocation(block.getLocation());
View Full Code Here


       
      } else if (shop instanceof ExchangeShop) {
        event   = new ShowCasePlayerExchangeEvent(player, (ExchangeShop)shop, quantity);
       
      } else if (shop instanceof DisplayShop) {
        event = new ShowCaseInfoEvent(player, shop);
       
      }
     
     
     
View Full Code Here

TOP

Related Classes of com.kellerkindt.scs.events.ShowCaseInfoEvent

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.