public static void SendCZCareerMessage(this Player player, CZCareerMessage val)
 {
     SendCZCareerMessage(MessageDestination.OneReliable, IntPtr.Zero, player.Pointer, val);
 }
 public static void SendCZCareerMessage(MessageDestination destination, CZCareerMessage val)
 {
     SendCZCareerMessage(destination, IntPtr.Zero, IntPtr.Zero , val.Type, val.Parameters);
 }
 public static void SendCZCareerMessage(this Player player, IntPtr floatValue, CZCareerMessage val)
 {
     SendCZCareerMessage(MessageDestination.OneReliable, floatValue, player.Pointer, val);
 }
 public static void SendCZCareerMessage(MessageDestination destination, IntPtr floatValue, IntPtr playerEntity, CZCareerMessage val)
 {
     SendCZCareerMessage(destination, floatValue,playerEntity , val.Type, val.Parameters);
 }