diff options
author | Loic Blot <loic.blot@unix-experience.fr> | 2021-04-29 09:30:19 +0200 |
---|---|---|
committer | Loïc Blot <nerzhul@users.noreply.github.com> | 2021-05-03 19:49:19 +0200 |
commit | ccdd886e273ec2fa5f8cfe1d1f474914eccb2abf (patch) | |
tree | 076dd76bafc39c824aaa4e372502514c14d6640a /src/script/common/c_content.h | |
parent | a47a00228b7be97a740081ec9ed86f108021ad6d (diff) | |
download | minetest-ccdd886e273ec2fa5f8cfe1d1f474914eccb2abf.tar.gz minetest-ccdd886e273ec2fa5f8cfe1d1f474914eccb2abf.tar.bz2 minetest-ccdd886e273ec2fa5f8cfe1d1f474914eccb2abf.zip |
refacto: Hud: make driver, client, player, inventory, tsrc private & drop unused guienv
also fix c_content.h, on client it includes the src/client/hud.h instead of src/hud.h, which leads to wrong file dependency on the lua stack
Diffstat (limited to 'src/script/common/c_content.h')
-rw-r--r-- | src/script/common/c_content.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/script/common/c_content.h b/src/script/common/c_content.h index 29d576355..f54490e3a 100644 --- a/src/script/common/c_content.h +++ b/src/script/common/c_content.h @@ -39,7 +39,7 @@ extern "C" { #include "itemgroup.h" #include "itemdef.h" #include "c_types.h" -#include "hud.h" +#include "../../hud.h" namespace Json { class Value; } |