Newer
Older
PBL / PBL / src / framework / model3D / ReflectionMapGenerator.java
package framework.model3D;

import javax.vecmath.Color4f;

public class ReflectionMapGenerator extends MapGenerator {
	private Color4f blendColor = null;
	
	public ReflectionMapGenerator(Color4f blendColor) {
		this.blendColor = blendColor;
	}
	
	public Color4f getBlendColor() {
		return blendColor;
	}
}