/// <summary>
 /// Checks whether this <see cref="Entity"/> is a <see cref="Vehicle"/>
 /// </summary>
 /// <param name="entity">The <see cref="Entity"/> to check</param>
 /// <returns><c>true</c> if this <see cref="Entity"/> is a <see cref="Vehicle"/>, otherwise <c>false</c></returns>
 public static bool IsVehicle(this Entity entity)
 {
     return(NativeWrappers.IsEntityAVehicle(entity));
 }