Package voodoo.framework

Examples of voodoo.framework.Piece


    init();
  }
 
  public Piece diff(Piece piece) {
    try {
      Piece diffPiece = new YouLosePiece();
      if(piece == null || !(piece instanceof YouLosePiece)) {
        throw new IllegalArgumentException();
      }
      for(String id : piece.getResourceIds()) {
        diffPiece.modifyResourceValue(id, (-1)*(piece.getResourceValue(id)));
      }
      return diffPiece;
    } catch (Exception e) {
      System.out.println(e.toString());
      return null;
View Full Code Here

TOP

Related Classes of voodoo.framework.Piece

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.