- Two more land templates
- Show engine error messages in net game
- Many small engine improvements
#ifndef _NET_UDPWIDGET_INCLUDED
#define _NET_UDPWIDGET_INCLUDED
#include <QWidget>
#include <QVBoxLayout>
class QUdpSocket;
class QListWidget;
class HWNetUdpWidget : public QWidget
{
Q_OBJECT
public:
HWNetUdpWidget(QWidget *parent = 0);
QListWidget* serversList;
public slots:
void updateList();
private slots:
void onClientRead();
private:
QVBoxLayout mainLayout;
QUdpSocket* pUdpSocket;
};
#endif // _NET_UDPWIDGET_INCLUDED