diff options
author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2023-07-01 19:43:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-01 19:43:42 +0200 |
commit | 6e2262b6c33bd0fa2cb67ff6d4a2f360f0c15913 (patch) | |
tree | 20c0c99c5217792e054f876712a54ae8b4f1eec8 /src/WebRTCLibPeerConnection.hpp | |
parent | d278661d767f5e1f8f68af2d0a706f5f044aa5d3 (diff) | |
parent | cb2be8723a16f9fdb13582562cb630c945dcd0a7 (diff) | |
download | godot-webrtc-native-6e2262b6c33bd0fa2cb67ff6d4a2f360f0c15913.tar.gz godot-webrtc-native-6e2262b6c33bd0fa2cb67ff6d4a2f360f0c15913.tar.bz2 godot-webrtc-native-6e2262b6c33bd0fa2cb67ff6d4a2f360f0c15913.zip |
Merge pull request #113 from Faless/spike/4.1
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; |