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/collada/collada.h

20 lines
321 B
C++

#ifndef BLENDER_COLLADA_H
#define BLENDER_COLLADA_H
struct bContext;
struct Scene;
#ifdef __cplusplus
extern "C" {
#endif
/*
* both return 1 on success, 0 on error
*/
int collada_import(bContext *C, const char *filepath);
int collada_export(Scene *sce, const char *filepath);
#ifdef __cplusplus
}
#endif
#endif