diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-08-30 08:44:36 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-08-30 08:44:36 +0200 |
commit | 8edc0b43b94bcc04defeeebd7ce120a0131ff511 (patch) | |
tree | bfa167f5598efc3f8c0a05b131be6bb8812b7edd /modules/mono/csharp_script.h | |
parent | d2f76e87869b892d7992696e0b381c5afebe3d0d (diff) | |
parent | c4705a590b5eb01d63afb907d6dad5c49d8f6fe1 (diff) | |
download | redot-engine-8edc0b43b94bcc04defeeebd7ce120a0131ff511.tar.gz |
Merge pull request #78634 from Sauermann/fix-notification-order
Fix `Object::notification` order
Diffstat (limited to 'modules/mono/csharp_script.h')
-rw-r--r-- | modules/mono/csharp_script.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/mono/csharp_script.h b/modules/mono/csharp_script.h index e28c91da2c..bea6d4f7a3 100644 --- a/modules/mono/csharp_script.h +++ b/modules/mono/csharp_script.h @@ -283,8 +283,8 @@ public: const Variant get_rpc_config() const override; - void notification(int p_notification) override; - void _call_notification(int p_notification); + void notification(int p_notification, bool p_reversed = false) override; + void _call_notification(int p_notification, bool p_reversed = false); String to_string(bool *r_valid) override; |