BlisterUI.Input.MouseWheelEventArgs.MouseWheelEventArgs C# (CSharp) Method

MouseWheelEventArgs() public method

public MouseWheelEventArgs ( int wParam ) : System
wParam int
return System
        public MouseWheelEventArgs(int wParam)
        {
            unchecked {
                deltas = (wParam & (int)0xffff0000) >> 16;
            }
        }
MouseWheelEventArgs