summaryrefslogtreecommitdiff
path: root/src/cat/LuaScriptInterface.h
diff options
context:
space:
mode:
authorjacob1 <jfu614@gmail.com>2013-01-18 19:38:05 (GMT)
committer jacob1 <jfu614@gmail.com>2013-01-18 19:38:05 (GMT)
commit8e7dfb20e92da30cafc0fedebc0c4f43703c0475 (patch)
treeb815619b8e8cbc191197a1bebffd602cd85bf278 /src/cat/LuaScriptInterface.h
parentded94b475d643f3e144f677ae6c01bbe5f9a73ce (diff)
parent17cd0e74f26b28101edf1ded343e83820d3f4357 (diff)
downloadpowder-8e7dfb20e92da30cafc0fedebc0c4f43703c0475.zip
powder-8e7dfb20e92da30cafc0fedebc0c4f43703c0475.tar.gz
Merge branch 'master' of git@github.com:FacialTurd/The-Powder-Toy.git
Diffstat (limited to 'src/cat/LuaScriptInterface.h')
-rw-r--r--src/cat/LuaScriptInterface.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/cat/LuaScriptInterface.h b/src/cat/LuaScriptInterface.h
index 616398a..f7b1a13 100644
--- a/src/cat/LuaScriptInterface.h
+++ b/src/cat/LuaScriptInterface.h
@@ -55,10 +55,16 @@ class LuaScriptInterface: public CommandInterface
//Simulation
void initSimulationAPI();
+ static void set_map(int x, int y, int width, int height, float value, int mapType);
static int simulation_partNeighbours(lua_State * l);
static int simulation_partChangeType(lua_State * l);
static int simulation_partCreate(lua_State * l);
static int simulation_partKill(lua_State * l);
+ static int simulation_pressure(lua_State * l);
+ static int simulation_velocityX(lua_State * l);
+ static int simulation_velocityY(lua_State * l);
+ static int simulation_gravMap(lua_State * l);
+ static int simulation_ambientHeat(lua_State * l);
//Renderer
void initRendererAPI();