started background

This commit is contained in:
qsnow1845 2019-05-17 15:20:15 -05:00
parent ff96741619
commit 52bf704414
2 changed files with 10 additions and 1 deletions

9
src/Background.java Normal file
View File

@ -0,0 +1,9 @@
import java.applet.Applet;
import java.awt.*;
public class Background extends Applet {
public static void draw(Graphics g){
Expo.fillRoundedRectangle(g,10,10,300,500,6);
Expo.setColor(g,Expo.gray);
}
}

View File

@ -3,6 +3,6 @@ import java.awt.*;
public class Main extends Applet {
public void paint(Graphics g){
Expo.fillRectangle(g,1,1,154,15);
Expo.drawHeading(g,"Quentin Snow and Alekkai","Final Project");
}
}