Esempio n. 1
0
 public PFPath(PFPath targetToClone = null)
 {
     if (targetToClone != null)
     {
         handle = PF.PFPathClone(targetToClone.handle);
     }
     else
     {
         handle = PF.PFPathCreate();
     }
 }