Esempio n. 1
0
 public static Content buildDialog(string i, List<Part> p)
 {
     Content d = new Content (i, content_type.DIALOG);
     d.parts = p;
     return d;
 }
Esempio n. 2
0
 public static Content buildCinematic(string i)
 {
     Content c = new Content (i, content_type.CINEMATIC);
     return c;
 }