2022-02-11 09:07:11 +11:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2020-04-20 15:27:12 +02:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
2022-02-15 10:27:03 -06:00
|
|
|
#include "BLI_math_vector.hh"
|
2020-04-20 15:27:12 +02:00
|
|
|
#include "BLI_utildefines.h"
|
|
|
|
|
|
|
|
|
|
#include "MEM_guardedalloc.h"
|
|
|
|
|
|
|
|
|
|
#include "DNA_node_types.h"
|
|
|
|
|
|
|
|
|
|
#include "BKE_node.h"
|
|
|
|
|
|
|
|
|
|
#include "BLT_translation.h"
|
|
|
|
|
|
2021-08-20 13:14:39 +02:00
|
|
|
#include "NOD_multi_function.hh"
|
2021-09-03 10:45:48 +02:00
|
|
|
#include "NOD_socket_declarations.hh"
|
2020-04-20 15:27:12 +02:00
|
|
|
|
2022-11-26 13:20:18 +01:00
|
|
|
#include "node_function_register.hh"
|
2020-04-20 15:27:12 +02:00
|
|
|
#include "node_util.h"
|
|
|
|
|
|
2020-07-07 18:23:33 +02:00
|
|
|
#include "FN_multi_function_builder.hh"
|
|
|
|
|
|
2022-08-31 12:15:57 +02:00
|
|
|
#include "RNA_access.h"
|
|
|
|
|
|
2022-01-03 19:32:33 -05:00
|
|
|
void fn_node_type_base(struct bNodeType *ntype, int type, const char *name, short nclass);
|