Welcome to mirror list, hosted at ThFree Co, Russian Federation.

collada.h « collada « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cccca072b40bf9e2a486d36b710356736be1a18f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#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