Update to box2d 2.4.1

This commit is contained in:
Garrett Brown
2020-10-17 22:15:18 -04:00
parent 7d24beab90
commit 77f238767f
58 changed files with 879 additions and 367 deletions
+3 -2
View File
@@ -23,11 +23,12 @@
#ifndef B2_BROAD_PHASE_H
#define B2_BROAD_PHASE_H
#include "b2_api.h"
#include "b2_settings.h"
#include "b2_collision.h"
#include "b2_dynamic_tree.h"
struct b2Pair
struct B2_API b2Pair
{
int32 proxyIdA;
int32 proxyIdB;
@@ -36,7 +37,7 @@ struct b2Pair
/// The broad-phase is used for computing pairs and performing volume queries and ray casts.
/// This broad-phase does not persist pairs. Instead, this reports potentially new pairs.
/// It is up to the client to consume the new pairs and to track subsequent overlap.
class b2BroadPhase
class B2_API b2BroadPhase
{
public: