mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
Add and require GDSOFTCLASS for Object subclasses that want to cast but do not use GDCLASS.
This commit is contained in:
parent
e585e6a3eb
commit
fa0a3c9c6e
16 changed files with 98 additions and 69 deletions
|
|
@ -44,10 +44,10 @@ public:
|
|||
static void initialize();
|
||||
static void finalize();
|
||||
|
||||
virtual Error setup(Ref<TLSOptions> p_options);
|
||||
virtual void stop();
|
||||
virtual Ref<PacketPeerDTLS> take_connection(Ref<PacketPeerUDP> p_peer);
|
||||
Error setup(Ref<TLSOptions> p_options) override;
|
||||
void stop() override;
|
||||
Ref<PacketPeerDTLS> take_connection(Ref<PacketPeerUDP> p_peer) override;
|
||||
|
||||
DTLSServerMbedTLS();
|
||||
~DTLSServerMbedTLS();
|
||||
~DTLSServerMbedTLS() override;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue