Execute() public method

public Execute ( object sender, SkillInstance instance, long delta, long curSectionTime ) : bool
sender object
instance SkillSystem.SkillInstance
delta long
curSectionTime long
return bool
 static public int Execute(IntPtr l)
 {
     try {
         GameFramework.Skill.Trigers.CurveMovementTrigger self = (GameFramework.Skill.Trigers.CurveMovementTrigger)checkSelf(l);
         System.Object a1;
         checkType(l, 2, out a1);
         SkillSystem.SkillInstance a2;
         checkType(l, 3, out a2);
         System.Int64 a3;
         checkType(l, 4, out a3);
         System.Int64 a4;
         checkType(l, 5, out a4);
         var ret = self.Execute(a1, a2, a3, a4);
         pushValue(l, true);
         pushValue(l, ret);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }