QTfrontend/netudpserver.h
author unc0rr
Tue, 13 Feb 2007 21:22:00 +0000
changeset 441 f2920f08ea5f
parent 413 523f1769f2bc
child 486 7ea71cd3acd5
permissions -rw-r--r--
Fix hedgehog stopping after picking up bonus box

#ifndef _NET_UDPSERVER_INCLUDED
#define _NET_UDPSERVER_INCLUDED

#include <QObject>

class QUdpSocket;

class HWNetUdpServer : public QObject
{
  Q_OBJECT

 public:
  HWNetUdpServer(QObject *parent = 0);

 private slots:
  void onClientRead();

 private:
  QUdpSocket* pUdpSocket;
};

#endif // _NET_UDPSERVER_INCLUDED