diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2023-04-03 11:46:29 +0300 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2023-04-24 14:08:55 +0300 |
commit | 628f3b2f7975600dee2ee31fc85ed23d2f34c8ab (patch) | |
tree | dc20debec3326ff820d5014b9e26f9f62d83b4aa /core/core_bind.h | |
parent | f178cad04a39bc40e759ef50675606b12bb07fff (diff) | |
download | redot-engine-628f3b2f7975600dee2ee31fc85ed23d2f34c8ab.tar.gz |
[OS] Implement and expose to scripting APIs `get_memory_info` method instead of old `get_free_static_memory`.
Diffstat (limited to 'core/core_bind.h')
-rw-r--r-- | core/core_bind.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/core_bind.h b/core/core_bind.h index 675da48591..c7d597562a 100644 --- a/core/core_bind.h +++ b/core/core_bind.h @@ -190,6 +190,7 @@ public: uint64_t get_static_memory_usage() const; uint64_t get_static_memory_peak_usage() const; + Dictionary get_memory_info() const; void delay_usec(int p_usec) const; void delay_msec(int p_msec) const; |