You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-18 14:21:41 +00:00
17 lines
269 B
C++
17 lines
269 B
C++
#include "register_openssl.h"
|
|
|
|
#include "stream_peer_openssl.h"
|
|
|
|
void register_openssl() {
|
|
|
|
ObjectTypeDB::register_type<StreamPeerOpenSSL>();
|
|
StreamPeerOpenSSL::initialize_ssl();
|
|
|
|
}
|
|
|
|
void unregister_openssl() {
|
|
|
|
StreamPeerOpenSSL::finalize_ssl();
|
|
|
|
}
|