99acec63f1
This updates our local copy to commit 5ec8339b6fc491e3f09a34a4516e82787f053fcc. We need a recent master commit for some new features that we use in Godot (see #25543 and #28909). To avoid warnings generated by Bullet headers included in our own module, we include those headers with -isystem on GCC and Clang. Fixes #29503.
28 lines
454 B
C++
28 lines
454 B
C++
#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
|
|
|