2022-02-11 09:07:11 +11:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2020-04-20 10:37:38 +02:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
2020-05-27 10:52:07 +10:00
|
|
|
struct Depsgraph;
|
2020-04-20 10:37:38 +02:00
|
|
|
struct Main;
|
2020-07-17 12:28:09 +02:00
|
|
|
struct Scene;
|
2020-12-15 10:47:58 +11:00
|
|
|
struct Simulation;
|
2020-04-20 10:37:38 +02:00
|
|
|
|
|
|
|
|
void *BKE_simulation_add(struct Main *bmain, const char *name);
|
|
|
|
|
|
2020-05-25 12:23:03 +02:00
|
|
|
void BKE_simulation_data_update(struct Depsgraph *depsgraph,
|
|
|
|
|
struct Scene *scene,
|
|
|
|
|
struct Simulation *simulation);
|
2020-07-17 12:28:09 +02:00
|
|
|
|
2020-04-20 10:37:38 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|