Newer
Older
Cactus-CleanArchitecture / app / src / main / java / org / ntlab / radishforandroidstudio / java3d / Light.java
n-konishi on 14 May 2018 274 bytes first commit
package org.ntlab.radishforandroidstudio.java3d;

public abstract class Light extends Leaf {
	protected Color3f color;
	
	public Light(Color3f c) {
		this.color = c;
	}
	
	public void setColor(Color3f c) {
		color = c;
	}
	
	public Color3f getColor() {
		return color;
	}
}