Made every appropriate Text and Logic class

This commit is contained in:
2019-04-07 14:58:48 -06:00
parent e2ad32c4ee
commit f37aa91fad
18 changed files with 278 additions and 205 deletions

View File

@@ -0,0 +1,10 @@
package text;
import logic.Player;
public class RandomEventText extends Player {
public RandomEventText(Player player) {
Player playerDummy = new Player(player);
setPlayer(playerDummy);
}
}