Blame view

src/preypredator/PPGrid.java 166 Bytes
89f70c1ec   glaville   import current mc...
1
2
3
4
5
6
7
8
9
10
11
  package preypredator;
  
  import mcmas.utils.IntMatrix;
  
  public class PPGrid extends IntMatrix {
  	
  	public PPGrid(int width, int height) {
  		super(width, height);
  	}
  
  }