public class Light {
    float x,y,z;
    float r,g,b;
    public final static int AMBIENT = 0;
    public final static int DIRECTIONAL = 1;
    public final static int POINT = 2;
    int type;

    public Light(int type,float x, float y, float z,float r, float g, float b) {
        
        this.x=x;
        this.y=y;
        this.z=z;
        this.r=r;
        this.g=g;
        this.b=b;
        this.type=type;
    }
}