diff options
Diffstat (limited to 'thirdparty/bullet/BulletCollision/Gimpact/gim_pair.h')
-rw-r--r-- | thirdparty/bullet/BulletCollision/Gimpact/gim_pair.h | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/thirdparty/bullet/BulletCollision/Gimpact/gim_pair.h b/thirdparty/bullet/BulletCollision/Gimpact/gim_pair.h deleted file mode 100644 index 56c185a5dc..0000000000 --- a/thirdparty/bullet/BulletCollision/Gimpact/gim_pair.h +++ /dev/null @@ -1,28 +0,0 @@ -#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 - |