Exemplo n.º 1
0
 protected void ItemUpdate(object obj, object dat, int index)
 {
     if (creator != null)
     {
         if (creator.hotfix)
         {
             if (creator.Update != null)
             {
                 creator.Update(obj, dat, index);
             }
         }
         else
         {
             creator.Call(obj, dat, index);
         }
     }
 }
 protected void ItemUpdate(object obj, object dat, int index, Constructor con)
 {
     if (con != null)
     {
         if (con.hotfix)
         {
             if (con.Update != null)
             {
                 con.Update(obj, dat, index);
             }
         }
         else
         {
             con.Call(obj, dat, index);
         }
     }
 }