Update bullet to Master 12409f1118a7c7a266f9071350c70789dfe73bb9
This commit is contained in:
parent
5307043751
commit
6142448417
119 changed files with 11716 additions and 2440 deletions
|
|
@ -528,6 +528,14 @@ protected:
|
|||
otherArray.copy(0, otherSize, m_data);
|
||||
}
|
||||
|
||||
void removeAtIndex(int index)
|
||||
{
|
||||
if (index<size())
|
||||
{
|
||||
swap( index,size()-1);
|
||||
pop_back();
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
#endif //B3_OBJECT_ARRAY__
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue