示例#1
0
文件: InputManager.cs 项目: Molus/LSE
 internal InputManager()
 {
     this.currentKeyState = KeyboardState.Empty;
     this.previousKeyState = KeyboardState.Empty;
     this.currentMouseState = MouseState.Empty;
     this.previousMouseState = MouseState.Empty;
 }
示例#2
0
文件: InputManager.cs 项目: Molus/LSE
        internal void Update()
        {
            this.previousKeyState = this.currentKeyState;
            this.currentKeyState = new KeyboardState();

            this.previousMouseState = this.currentMouseState;
            this.currentMouseState = new MouseState();
        }