story.narrateTo(renderer);
}
public void print(String storyClassName) throws InstantiationException, IllegalAccessException, ClassNotFoundException{
Story story = storyLoader.loadStory(storyClassName);
story.specify();
story.narrateTo(renderer);
}
public static void main(String[] args) {
try {