Add definition for skeleton

kimkulling/create_skeleton_data_issue_4015
Kim Kulling 2022-02-16 00:18:32 +01:00
parent 884bb39391
commit 50d7e6fc61
1 changed files with 14 additions and 0 deletions

View File

@ -937,6 +937,20 @@ struct aiMesh {
#endif // __cplusplus
};
struct aiSkeleton {
C_STRUCT aiString mName;
unsigned int mNumWeights;
C_STRUCT aiVertexWeight *mWeights;
#ifdef __cplusplus
aiSkeleton() AI_NO_EXCEPT : mName(), mNumWeights(0), mWeights(nullptr) {
// empty
}
~aiSkeleton() {
}
#endif // __cplusplus
};
#ifdef __cplusplus
}
#endif //! extern "C"