IT AINT BROKEN NOW (jar still broken)

This commit is contained in:
LinlyBoi
2023-03-04 12:06:25 +02:00
commit 1dc7909a90
20 changed files with 614 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
package org.bootcamp.TrafficLights;
import java.awt.Color;
public class Yellowlight extends Light {
Yellowlight() {
super(5, Color.YELLOW);
}
}