This repository has been archived on 2023-10-09. You can view files and clone it, but cannot push or open issues or pull requests.
Files
blender-archive/source/blender/python/api2_2x/Pose.h
2005-12-18 21:03:57 +00:00

25 lines
393 B
C++

#ifndef EXPP_POSE_H
#define EXPP_POSE_H
#include <Python.h>
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <DNA_action_types.h>
/* EXPP PyType Objects */
extern PyTypeObject Pose_Type;
struct BPy_Pose;
typedef struct {
PyObject_HEAD /* required python macro */
bPose * pose;
} BPy_Pose; /* a pose */
PyObject *Pose_CreatePyObject( bPose * p );
#endif /* EXPP_KEY_H */