aboutsummaryrefslogtreecommitdiff
path: root/src/luaentity_common.h
diff options
context:
space:
mode:
authorPerttu Ahola <celeron55@gmail.com>2011-11-12 15:14:24 +0200
committerPerttu Ahola <celeron55@gmail.com>2011-11-29 19:13:40 +0200
commit75a0ca6bd67aa9ca87668bc27d36399b5028c2b1 (patch)
tree0ba77ad2aec19a52161c6a361e7f04b1aadf1512 /src/luaentity_common.h
parent38944467d31bbfa8a98008962f147cbc3c73f507 (diff)
downloadhax-minetest-server-75a0ca6bd67aa9ca87668bc27d36399b5028c2b1.tar.gz
hax-minetest-server-75a0ca6bd67aa9ca87668bc27d36399b5028c2b1.zip
Scripting WIP
Diffstat (limited to 'src/luaentity_common.h')
-rw-r--r--src/luaentity_common.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/luaentity_common.h b/src/luaentity_common.h
index 379249d3f..6e5f11385 100644
--- a/src/luaentity_common.h
+++ b/src/luaentity_common.h
@@ -26,11 +26,12 @@ with this program; if not, write to the Free Software Foundation, Inc.,
struct LuaEntityProperties
{
+ // Values are BS=1
bool physical;
float weight;
core::aabbox3d<f32> collisionbox;
std::string visual;
- core::list<std::string> textures;
+ core::array<std::string> textures;
LuaEntityProperties();
std::string dump();