Bullet Collision Detection & Physics Library
gim_pair.h
Go to the documentation of this file.
1#ifndef GIM_PAIR_H
2#define GIM_PAIR_H
3
4
6struct GIM_PAIR
7{
11 {
12 }
13
15 {
18 }
19
20 GIM_PAIR(int index1, int index2)
21 {
22 m_index1 = index1;
23 m_index2 = index2;
24 }
25};
26
27#endif //GIM_PAIR_H
28
Overlapping pair.
Definition: gim_pair.h:7
GIM_PAIR()
Definition: gim_pair.h:10
int m_index1
Definition: gim_pair.h:8
int m_index2
Definition: gim_pair.h:9
GIM_PAIR(const GIM_PAIR &p)
Definition: gim_pair.h:14
GIM_PAIR(int index1, int index2)
Definition: gim_pair.h:20