1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-05-23 17:13:38 +02:00

make these readonly

This commit is contained in:
Ellpeck 2019-09-10 11:41:13 +02:00
parent c1726e4f1b
commit ff68816b05

View file

@ -45,10 +45,10 @@ namespace MLEM.Input {
private Keys heldKey;
public bool HandleGamepadRepeats = true;
private DateTime[] heldGamepadButtonStarts = new DateTime[GamePad.MaximumGamePadCount];
private DateTime[] lastGamepadButtonRepeats = new DateTime[GamePad.MaximumGamePadCount];
private bool[] triggerGamepadButtonRepeat = new bool[GamePad.MaximumGamePadCount];
private Buttons?[] heldGamepadButtons = new Buttons?[GamePad.MaximumGamePadCount];
private readonly DateTime[] heldGamepadButtonStarts = new DateTime[GamePad.MaximumGamePadCount];
private readonly DateTime[] lastGamepadButtonRepeats = new DateTime[GamePad.MaximumGamePadCount];
private readonly bool[] triggerGamepadButtonRepeat = new bool[GamePad.MaximumGamePadCount];
private readonly Buttons?[] heldGamepadButtons = new Buttons?[GamePad.MaximumGamePadCount];
public InputHandler(bool handleKeyboard = true, bool handleMouse = true, bool handleGamepads = true, bool handleTouch = true) {
this.HandleKeyboard = handleKeyboard;