export class Light { constructor({ ambient, cutoffAngle, intensity }) { this.ambient = ambient; this.cutoffAngle = cutoffAngle; this.intensity = intensity; } }