2023-05-31 16:19:06 +02:00
|
|
|
/* SPDX-FileCopyrightText: 2001-2002 NaN Holding BV. All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
2012-02-17 18:59:41 +00:00
|
|
|
#pragma once
|
2002-10-12 11:37:38 +00:00
|
|
|
|
2019-02-18 08:08:12 +11:00
|
|
|
/** \file
|
|
|
|
|
* \ingroup bke
|
2011-02-18 13:05:18 +00:00
|
|
|
*/
|
|
|
|
|
|
2018-11-08 15:56:56 +01:00
|
|
|
struct Depsgraph;
|
2013-02-05 12:46:15 +00:00
|
|
|
struct Main;
|
2002-10-12 11:37:38 +00:00
|
|
|
struct World;
|
|
|
|
|
|
2018-01-19 15:34:54 +11:00
|
|
|
struct World *BKE_world_add(struct Main *bmain, const char *name);
|
2018-11-08 15:56:56 +01:00
|
|
|
void BKE_world_eval(struct Depsgraph *depsgraph, struct World *world);
|