Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'intern/elbeem/intern/ntl_world.h')
-rw-r--r--intern/elbeem/intern/ntl_world.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/intern/elbeem/intern/ntl_world.h b/intern/elbeem/intern/ntl_world.h
index 131f1828601..18f388a5af4 100644
--- a/intern/elbeem/intern/ntl_world.h
+++ b/intern/elbeem/intern/ntl_world.h
@@ -23,16 +23,18 @@ class ntlRandomStream;
class ntlWorld
{
public:
+ /*! Constructor for API init */
+ ntlWorld();
/*! Constructor */
ntlWorld(string filename, bool commandlineMode);
- /*! Constructor for API init */
- ntlWorld(elbeemSimulationSettings *simSettings);
/*! Destructor */
virtual ~ntlWorld( void );
/*! default init for all contructors */
void initDefaults();
/*! common world contruction stuff once the scene is set up */
void finishWorldInit();
+ /*! add domain for API init */
+ int addDomain(elbeemSimulationSettings *simSettings);
/*! render a whole animation (command line mode) */
int renderAnimation( void );