Use Key enum instead of plain integers

This commit is contained in:
Aaron Franke 2021-06-20 13:12:33 -04:00
parent 18bd0fee5a
commit fa3a32a2d6
No known key found for this signature in database
GPG key ID: 40A1750B977E56BF
43 changed files with 173 additions and 102 deletions

View file

@ -221,7 +221,7 @@ Input::SpeedTrack::SpeedTrack() {
reset();
}
bool Input::is_key_pressed(int p_keycode) const {
bool Input::is_key_pressed(Key p_keycode) const {
_THREAD_SAFE_METHOD_
return keys_pressed.has(p_keycode);
}