Updated several components. I really gotta remember I split this off into a submodule.

This commit is contained in:
Storm Dragon
2026-02-22 19:27:16 -05:00
parent 44f13b1aeb
commit 8825bc38d7
16 changed files with 1197 additions and 1046 deletions

View File

@@ -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;