示例#1
0
 public static EventSetGlobal c(Global.GlobalBool globalVariable, bool setTo)
 {
     return(new EventSetGlobal()
     {
         setToBool = setTo, globalBool = globalVariable
     });
 }
示例#2
0
    public EventTextboxChoice AddChoice(string text, EventPage tiedEvent, Global.GlobalBool variableShown = null)
    {
        sets.Add(new ChoiceSet()
        {
            text = text, eventPage = tiedEvent, willShow = variableShown
        });

        return(this);
    }