コード例 #1
0
ファイル: EventArgs.cs プロジェクト: ChillyFlashER/OpenInput
 /// <summary>
 /// Initializes a new instance of <see cref="MouseEventArgs"/>.
 /// </summary>
 public MouseEventArgs(MouseState state)
 {
     this.State = state;
 }
コード例 #2
0
ファイル: EventArgs.cs プロジェクト: ChillyFlashER/OpenInput
 /// <summary>
 /// Initializes a new instance of <see cref="MouseWheelEventArgs"/>.
 /// </summary>
 public MouseWheelEventArgs(MouseState state)
     : base(state)
 {
 }
コード例 #3
0
ファイル: EventArgs.cs プロジェクト: ChillyFlashER/OpenInput
 /// <summary>
 /// Initializes a new instance of <see cref="MouseButtonEventArgs"/>.
 /// </summary>
 public MouseButtonEventArgs(MouseState state)
     : base(state)
 {
 }