/*******************************************************************************
* Copyright (c) 2016 Alex Shapiro - github.com/shpralex
* This program and the accompanying materials
* are made available under the terms of the The MIT License (MIT)
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*******************************************************************************/
package com.sproutlife.model.seed;
import java.awt.Point;
import com.sproutlife.model.rotations.Rotation;
import com.sproutlife.model.rotations.Rotations;
public class SeedSproutPattern {
protected BitPattern seedPattern;
protected BitPattern sproutPattern;
protected Point sproutOffset;
public BitPattern getSeedPattern() {
return seedPattern;
}
public BitPattern getSproutPattern() {
return sproutPattern;
}
public Point getSproutOffset() {
return sproutOffset;
}
}