Examples of VirtualMerchant


Examples of de.kumpelblase2.remoteentities.nms.VirtualMerchant

  public RemoteTradingFeature(String inName, List<TradeOffer> inOfferings)
  {
    super("TRADING");
    this.m_offerings = inOfferings;
    this.m_tradingPlayers = new ArrayList<Player>();
    this.m_merchant = new VirtualMerchant(this);
    this.m_name = inName;
  }
View Full Code Here

Examples of de.kumpelblase2.remoteentities.nms.VirtualMerchant

  public RemoteTradingFeature(RemoteEntity inEntity, String inName, List<TradeOffer> inOfferings)
  {
    super("TRADING", inEntity);
    this.m_offerings = inOfferings;
    this.m_tradingPlayers = new ArrayList<Player>();
    this.m_merchant = new VirtualMerchant(this);
    this.m_name = inName;
  }
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.