package com.jpaulmorrison.graphics; public class ProcessBlock extends Block { ProcessBlock (Diagram diag){ super(diag); width = BLOCKWIDTH; height = BLOCKHEIGHT; type = Block.Types.PROCESS_BLOCK; //calcEdges(); } }