Files
test/source/blender/python/generic/idprop_py_ui_api.hh
Bastien Montagne c3247aa4f0 Refactor: Move BPY generic headers to proper C++ ones.
NOTE: `bgl.h` was left unchanged, as it is deprecated code anyway, and
its conversion to C++ does not seem immediately trivial.
2024-09-25 18:04:27 +02:00

21 lines
335 B
C++

/* SPDX-FileCopyrightText: 2023 Blender Authors
*
* SPDX-License-Identifier: GPL-2.0-or-later */
/** \file
* \ingroup pygen
*/
#pragma once
struct IDProperty;
extern PyTypeObject BPy_IDPropertyUIManager_Type;
struct BPy_IDPropertyUIManager {
PyObject_VAR_HEAD
IDProperty *property;
};
void IDPropertyUIData_Init_Types();