diff options
author | Brandon Makin <bmicmak@gmail.com> | 2018-08-12 22:47:37 -0700 |
---|---|---|
committer | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2019-03-08 15:10:08 +0100 |
commit | 34fd1f8caa847d75ff7d5c6e3b8619b494608629 (patch) | |
tree | d91f06930c66014b19bea7fd4526736b69a676f5 /src/GodotSetSessionDescriptionObserver.cpp | |
parent | a44a5af115871b5be4dcfb05a421046a25ba5d73 (diff) | |
download | fork-godot-webrtc-native-34fd1f8caa847d75ff7d5c6e3b8619b494608629.tar.gz fork-godot-webrtc-native-34fd1f8caa847d75ff7d5c6e3b8619b494608629.tar.bz2 fork-godot-webrtc-native-34fd1f8caa847d75ff7d5c6e3b8619b494608629.zip |
Import GSoC work to WebRTC GDNative implementation
Diffstat (limited to 'src/GodotSetSessionDescriptionObserver.cpp')
-rw-r--r-- | src/GodotSetSessionDescriptionObserver.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/GodotSetSessionDescriptionObserver.cpp b/src/GodotSetSessionDescriptionObserver.cpp new file mode 100644 index 0000000..93b9b8d --- /dev/null +++ b/src/GodotSetSessionDescriptionObserver.cpp @@ -0,0 +1,11 @@ +#include "WebRTCPeer.hpp" + +using namespace godot_webrtc; + +WebRTCPeer::GodotSSDO::GodotSSDO(WebRTCPeer *parent) { + this->parent = parent; +} + +void WebRTCPeer::GodotSSDO::OnSuccess(){}; + +void WebRTCPeer::GodotSSDO::OnFailure(const std::string &error){}; |