Ejemplo n.º 1
0
 public void MyStudy(string t1, string t2)
 {
     FSPDebuger.LogTrack(5, t1, t2);/*study*/
     //Debug.Log("study");
 }
Ejemplo n.º 2
0
 public void Myfavorite(int name, int sex, int age)
 {
     FSPDebuger.LogTrack(1, name.ToString(), sex.ToString(), age.ToString());/*favorite*/
     //Debug.Log("favorite");
 }
Ejemplo n.º 3
0
 public void MyWeight(string weight)
 {
     FSPDebuger.LogTrack(3, weight); /*weight*/
     //Debug.Log("weight");
 }
Ejemplo n.º 4
0
 public void MyHeight(string height)
 {
     FSPDebuger.LogTrack(2, height); /*height*/
     //Debug.Log("height");
 }
Ejemplo n.º 5
0
 public void MySex(int sex)
 {
     FSPDebuger.LogTrack(4, sex.ToString());  /*Sex*/
     //Debug.Log("Sex");
 }