Ejemplo n.º 1
0
 public Page(int imageId, string storyText, Choice choice1, Choice choice2)
 {
     mPageImageId = imageId;
     mStoryText = storyText;
     mChoice1 = choice1;
     mChoice2 = choice2;
 }
Ejemplo n.º 2
0
 public Page(int imageID, string storyText)
 {
     mPageImageId = imageID;
     mStoryText = storyText;
     mChoice1 = null;
     mChoice2 = null;
     mIsFinal = true;
 }
Ejemplo n.º 3
0
 public void setChoice2(Choice choice)
 {
     this.mChoice2 = choice;
 }
Ejemplo n.º 4
0
 public void setChoice1(Choice choice)
 {
     this.mChoice1 = choice;
 }