UltimMC: Add our changes

This commit is contained in:
Neptune
2024-03-03 11:42:23 -05:00
parent 2c9e7b75f4
commit 0d01261956
45 changed files with 2191 additions and 445 deletions

19
launcher/AuthServer.h Normal file
View File

@@ -0,0 +1,19 @@
#pragma once
#include <QString>
#include <QTcpServer>
#include "settings/SettingsObject.h"
class AuthServer: public QObject
{
public:
explicit AuthServer(QObject *parent = 0);
quint16 port();
private:
void newConnection();
private:
std::shared_ptr<QTcpServer> m_tcpServer;
};