Skip to content

Commit 6d6d099

Browse files
committed
Test
0 parents  commit 6d6d099

File tree

4 files changed

+35
-0
lines changed

4 files changed

+35
-0
lines changed

Main.class

256 Bytes
Binary file not shown.

Main.java

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import stories.*;
2+
3+
import java.applet.*;
4+
import java.awt.*;
5+
6+
public class Main extends Applet {
7+
8+
public void paint(Graphics g) {
9+
10+
}
11+
12+
}

characters/Character.java

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
package characters;
2+
3+
public abstract class Character {
4+
5+
protected static final String[] they = {"they", "them", "their", "theirs", "themself"};
6+
protected static final String[] she = {"she", "her", "her", "hers", "herself"};
7+
protected static final String[] he = {"he", "him", "his", "his", "himself"};
8+
9+
10+
11+
public Character() {
12+
}
13+
14+
public abstract String name();
15+
16+
}

stories/Story.java

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
package stories;
2+
3+
public abstract class Story {
4+
5+
6+
7+
}

0 commit comments

Comments
 (0)