mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-15 23:19:29 +00:00
Merge pull request #773 from KRC2000/develop
Fixed return types absence.
This commit is contained in:
@@ -13,7 +13,7 @@ namespace MonoGame.Extended.Input
|
||||
return new KeyboardStateExtended(_currentKeyboardState, _previousKeyboardState);
|
||||
}
|
||||
|
||||
public static Refresh()
|
||||
public static void Refresh()
|
||||
{
|
||||
_previousKeyboardState = _currentKeyboardState;
|
||||
_currentKeyboardState = Keyboard.GetState();
|
||||
|
||||
@@ -15,7 +15,7 @@ namespace MonoGame.Extended.Input
|
||||
return new MouseStateExtended(_currentMouseState, _previousMouseState);
|
||||
}
|
||||
|
||||
public static Refresh()
|
||||
public static void Refresh()
|
||||
{
|
||||
_previousMouseState = _currentMouseState;
|
||||
_currentMouseState = Mouse.GetState();
|
||||
|
||||
Reference in New Issue
Block a user