コード例 #1
0
ファイル: Lua_XTween.cs プロジェクト: olivierh59500/DEMO
 static public int Kill(IntPtr l)
 {
     try {
         XTween         self = (XTween)checkSelf(l);
         System.Boolean a1;
         checkType(l, 2, out a1);
         self.Kill(a1);
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }