Example #1
0
 public BindedLogic(PureLogic purelogic, bool hasPassLogic = false, bool hasBeginingLogic = false, bool isStopSquare = false)
 {
     HasPassLogic = hasPassLogic;
     PureLogic = purelogic;
     HasBeginningLogic = hasBeginingLogic;
     IsStopSquare = isStopSquare;
 }
Example #2
0
 public Story(StoryType storyType, String displayedMessage, PureLogic pureLogic, bool positive, String storyGraphic)
 {
     DisplayedMessage = displayedMessage;
     StoryType = storyType;
     PureLogic = pureLogic;
     Positive = positive;
     StoryGraphic = storyGraphic;
 }