Updated several components. I really gotta remember I split this off into a submodule.
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
// Multikey input helpers.
|
||||
bool check_key_down(array<int>@ keys) {
|
||||
bool check_key_down(array<int> @keys) {
|
||||
// True when at least one key in the set is currently down.
|
||||
if (keys is null || keys.length() == 0) {
|
||||
return false;
|
||||
@@ -14,7 +14,7 @@ bool check_key_down(array<int>@ keys) {
|
||||
return false;
|
||||
}
|
||||
|
||||
bool check_all_keys(array<int>@ keys) {
|
||||
bool check_all_keys(array<int> @keys) {
|
||||
// True only when every key in the set is currently down.
|
||||
if (keys is null || keys.length() == 0) {
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user