diff options
author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2023-12-19 19:43:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-19 19:43:42 +0100 |
commit | d768508435cfb0b940486b4fec54339f5d9c096f (patch) | |
tree | 3042547b1e38b63ff7d3b62c3d361af4c82d0a6a /src/WebRTCLibPeerConnection.hpp | |
parent | cf23e5e74038249e6c050c5610db108efd86ae85 (diff) | |
parent | fb2c9c3687342240dd2f2fb10bfdd93da046cd5a (diff) | |
download | fork-godot-webrtc-native-d768508435cfb0b940486b4fec54339f5d9c096f.tar.gz fork-godot-webrtc-native-d768508435cfb0b940486b4fec54339f5d9c096f.tar.bz2 fork-godot-webrtc-native-d768508435cfb0b940486b4fec54339f5d9c096f.zip |
Merge pull request #129 from Faless/spike/to_string
Add _to_string method to extension classes.
Diffstat (limited to 'src/WebRTCLibPeerConnection.hpp')
-rw-r--r-- | src/WebRTCLibPeerConnection.hpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/WebRTCLibPeerConnection.hpp b/src/WebRTCLibPeerConnection.hpp index 6608735..1bcb29e 100644 --- a/src/WebRTCLibPeerConnection.hpp +++ b/src/WebRTCLibPeerConnection.hpp @@ -67,6 +67,10 @@ private: protected: static void _bind_methods() {} + godot::String _to_string() const { + return "WebRTCLibPeerConnection"; + } + public: static void _register_methods() {} static void initialize_signaling(); |