mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-18 14:08:19 +00:00
05af24a052
Move a couple of trivial type definitions to `<base/types.h>` instead.
19 lines
292 B
C++
19 lines
292 B
C++
#ifndef ENGINE_SERVER_UPNP_H
|
|
#define ENGINE_SERVER_UPNP_H
|
|
|
|
#include <base/types.h>
|
|
class CUPnP
|
|
{
|
|
NETADDR m_Addr;
|
|
struct UPNPUrls *m_pUPnPUrls;
|
|
struct IGDdatas *m_pUPnPData;
|
|
struct UPNPDev *m_pUPnPDevice;
|
|
bool m_Enabled;
|
|
|
|
public:
|
|
void Open(NETADDR Address);
|
|
void Shutdown();
|
|
};
|
|
|
|
#endif
|