mirror of
https://github.com/minetest/irrlicht.git
synced 2025-07-02 08:10:26 +02:00
Make irrArray backed by std::vector (#101)
This commit is contained in:
@ -196,7 +196,9 @@ private:
|
||||
core::array<SJoint*> AllJoints;
|
||||
core::array<SJoint*> RootJoints;
|
||||
|
||||
core::array< core::array<bool> > Vertices_Moved;
|
||||
// bool can't be used here because std::vector<bool>
|
||||
// doesn't allow taking a reference to individual elements.
|
||||
core::array< core::array<char> > Vertices_Moved;
|
||||
|
||||
core::aabbox3d<f32> BoundingBox;
|
||||
|
||||
|
Reference in New Issue
Block a user