diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2018-09-11 18:07:29 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2018-09-11 18:09:12 +0200 |
commit | af5751577578982c7e54d361f22b93b56d35cf41 (patch) | |
tree | 6fb6da9f0bd0b5d7c6287940fe9b7bb5dd79688d /modules/upnp/upnp.h | |
parent | 10db0421db93f7b57ae05e067f27dba6e09e4761 (diff) | |
download | redot-engine-af5751577578982c7e54d361f22b93b56d35cf41.tar.gz |
UPnP: Fix includes of thirdparty headers
Diffstat (limited to 'modules/upnp/upnp.h')
-rw-r--r-- | modules/upnp/upnp.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/modules/upnp/upnp.h b/modules/upnp/upnp.h index fb0c0f30a0..38e5ef0721 100644 --- a/modules/upnp/upnp.h +++ b/modules/upnp/upnp.h @@ -31,9 +31,10 @@ #ifndef GODOT_UPNP_H #define GODOT_UPNP_H -#include "miniupnpc/miniupnpc.h" -#include "upnpdevice.h" -#include <reference.h> +#include "core/reference.h" + +#include <miniupnpc/miniupnpc.h> +#include <miniupnpc/upnpdevice.h> class UPNP : public Reference { |