summaryrefslogtreecommitdiff
path: root/thirdparty/bullet/BulletCollision/Gimpact/gim_pair.h
blob: 56c185a5dc924f8cfb5b0215b23158f8b3b495e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#ifndef GIM_PAIR_H
#define GIM_PAIR_H


//! Overlapping pair
struct GIM_PAIR
{
        int m_index1;
        int m_index2;
        GIM_PAIR()
        {
        }

        GIM_PAIR(const GIM_PAIR& p)
        {
                m_index1 = p.m_index1;
                m_index2 = p.m_index2;
        }

        GIM_PAIR(int index1, int index2)
        {
                m_index1 = index1;
                m_index2 = index2;
        }
};

#endif //GIM_PAIR_H