summaryrefslogtreecommitdiffstats
path: root/modules/upnp/upnp.h
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2018-09-11 18:07:29 +0200
committerRémi Verschelde <rverschelde@gmail.com>2018-09-11 18:09:12 +0200
commitaf5751577578982c7e54d361f22b93b56d35cf41 (patch)
tree6fb6da9f0bd0b5d7c6287940fe9b7bb5dd79688d /modules/upnp/upnp.h
parent10db0421db93f7b57ae05e067f27dba6e09e4761 (diff)
downloadredot-engine-af5751577578982c7e54d361f22b93b56d35cf41.tar.gz
UPnP: Fix includes of thirdparty headers
Diffstat (limited to 'modules/upnp/upnp.h')
-rw-r--r--modules/upnp/upnp.h7
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 {