예제 #1
0
파일: input.cs 프로젝트: hlorenzi/trapl
 public static TextInput MakeFromString(string str)
 {
     var src = new TextInput();
     src.stringContents = str;
     return src;
 }
예제 #2
0
파일: input.cs 프로젝트: hlorenzi/trapl
 public static TextInput MakeFromFile(string filepath)
 {
     var src = new TextInput();
     src.filepath = filepath;
     return src;
 }