Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
/* SPDX-FileCopyrightText: 2023 Blender Authors
*
* SPDX-License-Identifier: GPL-2.0-or-later */
/** \file
* \ingroup pygen
*/
#pragma once
#include <Python.h>
struct IDProperty;
extern PyTypeObject BPy_IDPropertyUIManager_Type;
struct BPy_IDPropertyUIManager {
PyObject_VAR_HEAD
IDProperty *property;
};
void IDPropertyUIData_Init_Types();