Currently broken. Will fix later

Signed-off-by: officereso <qrs01@snowtx.com>
This commit is contained in:
officereso 2019-05-18 22:11:42 -05:00
parent 09b4d54e66
commit a5daf9a27a
5 changed files with 38 additions and 5 deletions

11
.idea/artifacts/Final_jar.xml generated Normal file
View File

@ -0,0 +1,11 @@
<component name="ArtifactManager">
<artifact type="jar" name="Final:jar">
<output-path>$PROJECT_DIR$/out/artifacts/Final_jar</output-path>
<root id="archive" name="Final.jar">
<element id="directory" name="META-INF">
<element id="file-copy" path="$PROJECT_DIR$/src/resources/META-INF/MANIFEST.MF" />
</element>
<element id="module-output" name="Final" />
</root>
</artifact>
</component>

7
.idea/dictionaries/freeman.xml generated Normal file
View File

@ -0,0 +1,7 @@
<component name="ProjectDictionaryState">
<dictionary name="freeman">
<words>
<w>alekkai</w>
</words>
</dictionary>
</component>

View File

@ -3,10 +3,10 @@ package project;
import java.applet.Applet;
import java.awt.*;
public class Main extends Applet{
public void paint(Graphics g){
Expo.drawHeading(g,"Quentin Snow and Alekkai","Final Project");
Background.create(g);
// project.Sprites.player.make(g);
public static void main(String[] args) {
Paint.create(Graphics(g));
}
}

12
src/project/Paint.java Normal file
View File

@ -0,0 +1,12 @@
package project;
import java.applet.Applet;
import java.awt.*;
public class Paint extends Applet {
public static void create(Graphics g) {
Expo.drawHeading(g, "Quentin Snow and Alekkai", "Final Project");
// Background.create(g);
// project.Sprites.player.make(g);
}
}

View File

@ -0,0 +1,3 @@
Manifest-Version: 1.0
Main-Class: project.Main