Ejemplo n.º 1
0
        public Info(Dialog dialog, int speechBlock)
        {
            DialogSinglet singlet = new DialogSinglet(dialog.Character, dialog.Text[speechBlock]);

            type = Type.Dialog;
            Data = singlet;
        }
Ejemplo n.º 2
0
 // i've decided to make the node data it self viewable
 public Info(Decision choices)
 {
     type = Type.Descision;
     Data = choices;
 }