SolutionLecture5.InputManager.IsKeyReleased C# (CSharp) Method

IsKeyReleased() public method

public IsKeyReleased ( Keys key ) : bool
key Keys
return bool
        public bool IsKeyReleased(Keys key)
        {
            return _curKeyState.IsKeyUp(key) && _prevKeystate.IsKeyDown(key);
        }