예제 #1
0
 static public KeyValuePair <int, Slice> FromText(string text)
 {
     return(TextConventer.SliceFromText(text));
 }
예제 #2
0
파일: Row.cs 프로젝트: HavenDV/MakeRuler
 public string ToText(int rowId, bool isSimple = false)
 {
     return(TextConventer.ToText(new KeyValuePair <int, Row>(rowId, this), isSimple));
 }
예제 #3
0
 public string ToText(int sliceId, bool isSimple = false)
 {
     return(TextConventer.ToText(new KeyValuePair <int, Slice>(sliceId, this), isSimple));
 }
예제 #4
0
파일: Scene.cs 프로젝트: HavenDV/MakeRuler
 static public Scene FromFile(string path)
 {
     return(TextConventer.SceneFromFile(path));
 }
예제 #5
0
파일: Scene.cs 프로젝트: HavenDV/MakeRuler
 public void ToFile(string path)
 {
     TextConventer.ToFile(this, path);
 }
예제 #6
0
파일: Scene.cs 프로젝트: HavenDV/MakeRuler
 static public Scene FromText(string text)
 {
     return(TextConventer.SceneFromText(text));
 }
예제 #7
0
파일: Scene.cs 프로젝트: HavenDV/MakeRuler
 public string ToText()
 {
     return(TextConventer.ToText(this));
 }