I am currently making a game that takes place over 10 days in senior year. I created an intro to this game but I am unsure of how to put it all together. Should I have the intro be the parent class and have different subclasses for each day? Here is my code so far.
package SeniorGame;
import java.util.Scanner;
public class Intro{
public static void main (String[]args){
Scanner sc = new Scanner(System.in);
System.out.println("Before the game begins I need to know a few things about yourself.");
System.out.println();
String name;
System.out.println("What is your name? ");
name=sc.next();
String crush;
System.out.println("Who was your High School crush? ");
crush=sc.next();
String bfriend;
System.out.println("Who was your best friend in High School? ");
bfriend=sc.next();
System.out.println();
System.out.println();
System.out.println("This is a story that consits of 12 days in your senior year of High School.\n"
+ "The days are spread out from the beginning to the end of the year.\nThe choices you make"
+ " will impact the way your story plays out.");
}
}