This commit is contained in:
2021-06-27 20:27:03 -05:00
commit cbd4520e12
42 changed files with 1836 additions and 0 deletions

24
structs/MenuKey.d.ts vendored Normal file
View File

@@ -0,0 +1,24 @@
/**
*
* @public
*/
declare class MenuKey {
/**
* vector of virtual keys
*/
readonly keys: table<uint32_t>;
public push_vk(virtualKeyCode: uint32_t): void;
public push_str(key: string): boolean;
public pop(): void;
public clear(): void;
public is_down(): boolean;
public is_down_stepped(): boolean;
}