diff options
author | Quentin Bazin <quent42340@gmail.com> | 2018-11-28 20:01:49 +0100 |
---|---|---|
committer | SmallJoker <SmallJoker@users.noreply.github.com> | 2018-11-28 20:01:49 +0100 |
commit | 5f1cd555cd9d1c64426e173b30b5b792d211c835 (patch) | |
tree | 2c8508467d3bf28d549cce2d25144fa8ef42beae /src/network | |
parent | ddd9317b733857630499972179caebc236b4d991 (diff) | |
download | minetest-5f1cd555cd9d1c64426e173b30b5b792d211c835.tar.gz minetest-5f1cd555cd9d1c64426e173b30b5b792d211c835.tar.bz2 minetest-5f1cd555cd9d1c64426e173b30b5b792d211c835.zip |
Move client-specific files to 'src/client' (#7902)
Update Android.mk
Remove 'src/client' from include_directories
Diffstat (limited to 'src/network')
-rw-r--r-- | src/network/clientopcodes.h | 2 | ||||
-rw-r--r-- | src/network/clientpackethandler.cpp | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/network/clientopcodes.h b/src/network/clientopcodes.h index 57846f095..d03dc457d 100644 --- a/src/network/clientopcodes.h +++ b/src/network/clientopcodes.h @@ -20,7 +20,7 @@ with this program; if not, write to the Free Software Foundation, Inc., #pragma once -#include "client.h" +#include "client/client.h" #include "networkprotocol.h" class NetworkPacket; diff --git a/src/network/clientpackethandler.cpp b/src/network/clientpackethandler.cpp index 1899b496e..1be7d4eeb 100644 --- a/src/network/clientpackethandler.cpp +++ b/src/network/clientpackethandler.cpp @@ -17,15 +17,15 @@ with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#include "client.h" +#include "client/client.h" #include "util/base64.h" #include "chatmessage.h" -#include "clientmedia.h" +#include "client/clientmedia.h" #include "log.h" #include "map.h" #include "mapsector.h" -#include "minimap.h" +#include "client/minimap.h" #include "modchannels.h" #include "nodedef.h" #include "serialization.h" |