Ejemplo n.º 1
0
 public static long?UID(this GTANetworkAPI.Entity entity)
 {
     if (entity.HasSharedData("UID"))
     {
         return(entity.GetSharedData("UID"));
     }
     return(null);
 }
Ejemplo n.º 2
0
 public static object GetValue(this GTANetworkAPI.Entity entity, string strKey)
 {
     if (entity.HasSharedData(strKey))
     {
         return(entity.GetSharedData(strKey));
     }
     return(null);
 }