blob: 36131875be59a63d961f188c204d6d8cdc690625 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef HONEY_IMPORT_TEST_H
#define HONEY_IMPORT_TEST_H
void test_push_vector();
void test_push_face();
void test_push_aistring();
/* mesh tests */
void test_push_mesh();
void test_push_mesh_faces();
void test_push_mesh_normals();
void test_push_mesh_tangents();
void test_push_mesh_uvs();
/* node tests */
void test_push_node();
/* scene tests */
void test_push_scene();
#endif
|