diff options
author | Thaddeus Crews <repiteo@outlook.com> | 2024-11-12 09:27:52 -0600 |
---|---|---|
committer | Thaddeus Crews <repiteo@outlook.com> | 2024-11-12 09:27:52 -0600 |
commit | cb286da1dd4a7cadc2b533219ef9185fa45fb701 (patch) | |
tree | 6a090600564976a49236a1aecf3ba03433910a76 /platform/macos/os_macos.h | |
parent | 658b5d4cf822b9f796058272e37ffd6bcb9b8559 (diff) | |
parent | a6dfd1cf6ef90f4e732727649ebc0c3234ec90b6 (diff) | |
download | redot-engine-cb286da1dd4a7cadc2b533219ef9185fa45fb701.tar.gz |
Merge pull request #99112 from bruvzg/get_model_name
Implement `get_model_name` on macOS and Windows.
Diffstat (limited to 'platform/macos/os_macos.h')
-rw-r--r-- | platform/macos/os_macos.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/platform/macos/os_macos.h b/platform/macos/os_macos.h index 303fc112bf..4fb4507837 100644 --- a/platform/macos/os_macos.h +++ b/platform/macos/os_macos.h @@ -114,6 +114,8 @@ public: virtual String get_unique_id() const override; virtual String get_processor_name() const override; + virtual String get_model_name() const override; + virtual bool is_sandboxed() const override; virtual Vector<String> get_granted_permissions() const override; virtual void revoke_granted_permissions() override; |