diff options
author | rubenwardy <rw@rubenwardy.com> | 2021-02-17 19:51:28 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-17 19:51:28 +0000 |
commit | f85e9ab9254e2ae4ac13170f9edea00fb8d931a2 (patch) | |
tree | 43fa19520c7f744f798de0ed8bcbb8e01c82e327 /src/script/common/helper.h | |
parent | a8f6befd398cb8f962f3bb1fab092d6355bfe015 (diff) | |
download | minetest-f85e9ab9254e2ae4ac13170f9edea00fb8d931a2.tar.gz minetest-f85e9ab9254e2ae4ac13170f9edea00fb8d931a2.tar.bz2 minetest-f85e9ab9254e2ae4ac13170f9edea00fb8d931a2.zip |
Add nametag background setting and object property (#10937)
Diffstat (limited to 'src/script/common/helper.h')
-rw-r--r-- | src/script/common/helper.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/script/common/helper.h b/src/script/common/helper.h index 7a794dc9b..6491e73cf 100644 --- a/src/script/common/helper.h +++ b/src/script/common/helper.h @@ -38,7 +38,8 @@ protected: * @param index Lua Index to read * @return read value from Lua */ - template <typename T> static T readParam(lua_State *L, int index); + template <typename T> + static T readParam(lua_State *L, int index); /** * Read a value using a template type T from Lua State L and index |