19 lines
327 B
C++
19 lines
327 B
C++
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
/** \file
|
|
* \ingroup pygen
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
struct IDProperty;
|
|
|
|
extern PyTypeObject BPy_IDPropertyUIManager_Type;
|
|
|
|
typedef struct BPy_IDPropertyUIManager {
|
|
PyObject_VAR_HEAD
|
|
struct IDProperty *property;
|
|
} BPy_IDPropertyUIManager;
|
|
|
|
void IDPropertyUIData_Init_Types(void);
|