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

rna_material_api.c « intern « makesrna « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 12ba8c6491bd6abc580819a0ab2736a2dc6fb656 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/* SPDX-License-Identifier: GPL-2.0-or-later
 * Copyright 2009 Blender Foundation. All rights reserved. */

/** \file
 * \ingroup RNA
 */

#include <stdio.h>
#include <stdlib.h>

#include "BLI_utildefines.h"

#include "RNA_define.h"

#include "DNA_material_types.h"

#include "rna_internal.h" /* own include */

#ifdef RNA_RUNTIME

#else

void RNA_api_material(StructRNA *UNUSED(srna))
{
  // FunctionRNA *func;
  // PropertyRNA *parm;
}

#endif