mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-15 21:18:06 +02:00
use 'using' instead of 'typedef'
This commit is contained in:
parent
010d1dfa22
commit
aceac12398
1 changed files with 2 additions and 2 deletions
|
@ -41,8 +41,8 @@ public:
|
|||
void* _b; // ObjectMotionState pointer
|
||||
};
|
||||
|
||||
typedef std::map<ContactKey, ContactInfo> ContactMap;
|
||||
typedef std::vector<Collision> CollisionEvents;
|
||||
using ContactMap = std::map<ContactKey, ContactInfo>;
|
||||
using CollisionEvents = std::vector<Collision>;
|
||||
|
||||
class PhysicsEngine {
|
||||
public:
|
||||
|
|
Loading…
Reference in a new issue