summaryrefslogtreecommitdiff
path: root/src/script/common/c_content.h
diff options
context:
space:
mode:
authorkwolekr <kwolekr@minetest.net>2013-06-22 00:29:44 -0400
committerkwolekr <kwolekr@minetest.net>2013-06-22 01:11:52 -0400
commitc1b829077a3518f3a129eee11887b2358a53f20b (patch)
tree966230881a6fba1ce81d5b356f03c273bb6584dd /src/script/common/c_content.h
parentb1a74df26d73aab2463ad0f18e04d1970bf83d96 (diff)
downloadminetest-c1b829077a3518f3a129eee11887b2358a53f20b.tar.gz
minetest-c1b829077a3518f3a129eee11887b2358a53f20b.tar.bz2
minetest-c1b829077a3518f3a129eee11887b2358a53f20b.zip
Decoration: Add Schematic decoration type
Diffstat (limited to 'src/script/common/c_content.h')
-rw-r--r--src/script/common/c_content.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/script/common/c_content.h b/src/script/common/c_content.h
index 58be7118c..fc00ce089 100644
--- a/src/script/common/c_content.h
+++ b/src/script/common/c_content.h
@@ -57,6 +57,7 @@ struct DigParams;
struct HitParams;
struct EnumString;
struct NoiseParams;
+class DecoSchematic;
ContentFeatures read_content_features (lua_State *L, int index);
@@ -139,6 +140,10 @@ bool string_to_enum (const EnumString *spec,
NoiseParams* read_noiseparams (lua_State *L, int index);
+bool read_schematic (lua_State *L, int index,
+ DecoSchematic *dschem,
+ Server *server);
+
void luaentity_get (lua_State *L,u16 id);
extern struct EnumString es_TileAnimationType[];