refactor: separate network class from Qgraphics

This commit is contained in:
parker
2025-06-20 01:51:28 +01:00
parent 2feb6eb5b4
commit be9f3e27ea
6 changed files with 42 additions and 12 deletions

11
src/gui/network/Network.h Normal file
View File

@@ -0,0 +1,11 @@
#pragma once
#include <QWidget>
class Network
: public QWidget
{
public:
Network(QWidget* parent = nullptr);
private:
QLayout* mainLayout_;
};