// Token: 0x06004095 RID: 16533 RVA: 0x000ECB68 File Offset: 0x000EAD68
 public dfMouseEventArgs(global::dfControl Source, global::dfMouseButtons button, int clicks, Ray ray, Vector2 location, float wheel) : base(Source)
 {
     this.Buttons    = button;
     this.Clicks     = clicks;
     this.Position   = location;
     this.WheelDelta = wheel;
     this.Ray        = ray;
 }
 // Token: 0x06004064 RID: 16484 RVA: 0x000EC554 File Offset: 0x000EA754
 public static bool IsSet(this global::dfMouseButtons value, global::dfMouseButtons flag)
 {
     return(flag == (value & flag));
 }