mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-03-28 07:26:56 +00:00
[Input] Added Keyboard/MouseState.SetIsConnected to mirror JoystickState
This commit is contained in:
parent
e984ddd783
commit
4d660fdeba
|
@ -291,6 +291,11 @@ namespace OpenTK.Input
|
|||
IsConnected |= other.IsConnected;
|
||||
}
|
||||
|
||||
internal void SetIsConnected(bool value)
|
||||
{
|
||||
IsConnected = value;
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region Private Members
|
||||
|
|
|
@ -329,6 +329,11 @@ namespace OpenTK.Input
|
|||
}
|
||||
}
|
||||
|
||||
internal void SetIsConnected(bool value)
|
||||
{
|
||||
IsConnected = value;
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region Private Members
|
||||
|
|
Loading…
Reference in a new issue