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

bpy_gizmo_wrap.h « intern « python « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7d5edebed0febd6c878cbaf3600596c87b031169 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* SPDX-License-Identifier: GPL-2.0-or-later */

/** \file
 * \ingroup pythonintern
 */

#pragma once

struct wmGizmoGroupType;
struct wmGizmoType;

#ifdef __cplusplus
extern "C" {
#endif

/* Exposed to RNA/WM API. */
void BPY_RNA_gizmo_wrapper(struct wmGizmoType *gzt, void *userdata);
void BPY_RNA_gizmogroup_wrapper(struct wmGizmoGroupType *gzgt, void *userdata);

#ifdef __cplusplus
}
#endif