static void EventSink_DropMobile(DropMobileEventArgs e)
		{
			HoverExploit(e.Map, e.X, e.Y);
		}
Example #2
0
		public static void InvokeDropMobile(DropMobileEventArgs e)
		{
			if (DropMobile != null)
			{
				foreach (DropMobileEventHandler currentDelegate in DropMobile.GetInvocationList())
				{
					try
					{
						currentDelegate.Invoke(e);
					}
					catch (Exception ex)
					{
						// Log an exception
						EventSink.InvokeLogException(new LogExceptionEventArgs(ex));
					}
				}
			}
		}