diff options
Diffstat (limited to 'Client/Source/Phy2DLite/Arbiter.h')
-rw-r--r-- | Client/Source/Phy2DLite/Arbiter.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Client/Source/Phy2DLite/Arbiter.h b/Client/Source/Phy2DLite/Arbiter.h index 2232210..167978f 100644 --- a/Client/Source/Phy2DLite/Arbiter.h +++ b/Client/Source/Phy2DLite/Arbiter.h @@ -1,6 +1,7 @@ #pragma once
#include "Math.h" +#include "Constants.h" namespace Phy2D { @@ -21,7 +22,7 @@ namespace Phy2D struct Contact { - Contact() : Pn(0.0f), Pt(0.0f), Pnb(0.0f) {} + Contact() : Pn(_0), Pt(_0), Pnb(_0) {} Vec2 position; Vec2 normal; |