From 1ef96383c8f7ed136a0e028aef0835b4838b5e95 Mon Sep 17 00:00:00 2001 From: TrickyLeifa Date: Fri, 17 May 2024 16:39:30 +0200 Subject: Lightly reworked `NetworkManager`, ... * Lightly reworked `NetworkManager` * Added new modules to handle various connection types. * TCP * WebSocket * Added general string splitter alias based on Qt version. * Replaced `lobby_constructed` and `courtroom_constructed` * Refactored and partially reimplemented the following classes: * `AOBlipPlayer` * `AOEmotePreview` * `AOMusicPlayer` * `AOSfxPlayer` * `AOTextArea` --- src/net/netconnection.cpp | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 src/net/netconnection.cpp (limited to 'src/net/netconnection.cpp') diff --git a/src/net/netconnection.cpp b/src/net/netconnection.cpp new file mode 100644 index 00000000..63ca7060 --- /dev/null +++ b/src/net/netconnection.cpp @@ -0,0 +1,5 @@ +#include "netconnection.h" + +NetConnection::NetConnection(QObject *parent) + : QObject(parent) +{} -- cgit