diff options
| author | jacob1 <jfu614@gmail.com> | 2013-07-18 22:54:09 (GMT) |
|---|---|---|
| committer | jacob1 <jfu614@gmail.com> | 2013-07-18 22:54:09 (GMT) |
| commit | da7d107f60f2e07ac6d859dbc562473ddaf321fe (patch) | |
| tree | 3670b0f757cd5f1c181108406402b08aecaa46ba /src/simulation/Simulation.h | |
| parent | 40285e107a998aafaa6c88ee7ca650191ae5b400 (diff) | |
| download | powder-da7d107f60f2e07ac6d859dbc562473ddaf321fe.zip powder-da7d107f60f2e07ac6d859dbc562473ddaf321fe.tar.gz | |
remove specific delete for walls, doesn't work very well and it conflicts with specific delete for elements
Also prevent wall replace mode, could never do anything because walls already replace everything
Diffstat (limited to 'src/simulation/Simulation.h')
| -rw-r--r-- | src/simulation/Simulation.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/simulation/Simulation.h b/src/simulation/Simulation.h index 349ab12..9c900ab 100644 --- a/src/simulation/Simulation.h +++ b/src/simulation/Simulation.h @@ -177,10 +177,10 @@ public: void ToolBox(int x1, int y1, int x2, int y2, int tool, float strength = 1.0f); //Drawing Walls - int CreateWalls(int x, int y, int rx, int ry, int wall, Brush * cBrush = NULL, int flags = -1); - void CreateWallLine(int x1, int y1, int x2, int y2, int rx, int ry, int wall, Brush * cBrush = NULL, int flags = -1); - void CreateWallBox(int x1, int y1, int x2, int y2, int wall, int flags = -1); - int FloodWalls(int x, int y, int wall, int bm, int flags = -1); + int CreateWalls(int x, int y, int rx, int ry, int wall, Brush * cBrush = NULL); + void CreateWallLine(int x1, int y1, int x2, int y2, int rx, int ry, int wall, Brush * cBrush = NULL); + void CreateWallBox(int x1, int y1, int x2, int y2, int wall); + int FloodWalls(int x, int y, int wall, int bm); //Drawing Particles int CreateParts(int positionX, int positionY, int c, Brush * cBrush, int flags = -1); |
