Tizen 2.1 base
[platform/upstream/libbullet.git] / Extras / Serialize / makesdna / DNA_rigidbody.h
1
2 #ifndef DNA_RIGIDBODY_H
3 #define DNA_RIGIDBODY_H
4
5
6 struct  PointerArray
7 {
8         int             m_size;
9         int             m_capacity;
10         void    *m_data;
11 };
12
13
14 struct btPhysicsSystem
15 {
16         PointerArray    m_collisionShapes;
17         PointerArray    m_collisionObjects;
18         PointerArray    m_constraints;
19 };
20
21 ///we need this to compute the pointer sizes
22 struct ListBase
23 {
24         void *first;
25         void *last;
26 };
27
28
29 #endif