diff options
author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2023-06-30 11:44:33 +0200 |
---|---|---|
committer | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2023-06-30 16:52:36 +0200 |
commit | cb2be8723a16f9fdb13582562cb630c945dcd0a7 (patch) | |
tree | 20c0c99c5217792e054f876712a54ae8b4f1eec8 /src/WebRTCLibPeerConnection.hpp | |
parent | d278661d767f5e1f8f68af2d0a706f5f044aa5d3 (diff) | |
download | fork-godot-webrtc-native-cb2be8723a16f9fdb13582562cb630c945dcd0a7.tar.gz fork-godot-webrtc-native-cb2be8723a16f9fdb13582562cb630c945dcd0a7.tar.bz2 fork-godot-webrtc-native-cb2be8723a16f9fdb13582562cb630c945dcd0a7.zip |
Support building for Godot 4.1 (new default).
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 c4f8111..6608735 100644 --- a/src/WebRTCLibPeerConnection.hpp +++ b/src/WebRTCLibPeerConnection.hpp @@ -79,7 +79,11 @@ public: SignalingState _get_signaling_state() const override; godot::Error _initialize(const godot::Dictionary &p_config) override; +#if defined(GDNATIVE_WEBRTC) || defined(GDEXTENSION_WEBRTC_40) godot::Object *_create_data_channel(const godot::String &p_channel, const godot::Dictionary &p_channel_config) override; +#else + godot::Ref<godot::WebRTCDataChannel> _create_data_channel(const godot::String &p_channel, const godot::Dictionary &p_channel_config) override; +#endif godot::Error _create_offer() override; godot::Error _set_remote_description(const godot::String &type, const godot::String &sdp) override; godot::Error _set_local_description(const godot::String &type, const godot::String &sdp) override; |