Package org.rugby.online.core.economy

Examples of org.rugby.online.core.economy.RboTransferDescription


  private DefaultEconomy economy;
 
  @Before
  public void setUp() throws Exception {
    economy = new DefaultEconomy(1L);
    RboTransferDescription descr1 = new DefaultTransferDescription(2L, 1L, 100, 0, RboTransferType.INCOME_SINGLE);
    RboTransferDescription descr2 = new DefaultTransferDescription(1L, 3L, 20, 0, RboTransferType.OUTCOME_SINGLE);
    economy.getTransferDescription().add(descr1);
    economy.getTransferDescription().add(descr2);
  }
View Full Code Here

TOP

Related Classes of org.rugby.online.core.economy.RboTransferDescription

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.