Files
test/source/blender/python/intern/bpy_gizmo_wrap.h
2022-11-02 10:18:19 +11:00

23 lines
396 B
C

/* 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