public Page(int imageId, string storyText, Choice choice1, Choice choice2)
 {
     mPageImageId = imageId;
     mStoryText = storyText;
     mChoice1 = choice1;
     mChoice2 = choice2;
 }
 public Page(int imageID, string storyText)
 {
     mPageImageId = imageID;
     mStoryText = storyText;
     mChoice1 = null;
     mChoice2 = null;
     mIsFinal = true;
 }
 public void setChoice2(Choice choice)
 {
     this.mChoice2 = choice;
 }
 public void setChoice1(Choice choice)
 {
     this.mChoice1 = choice;
 }