Havok: Fix mismatched class/struct warnings

This commit is contained in:
Léo Lam 2022-02-01 21:30:45 +01:00
parent d277eac80e
commit c95f9517e9
No known key found for this signature in database
GPG Key ID: 0DF30F9081000741
2 changed files with 5 additions and 5 deletions

View File

@ -3,8 +3,8 @@
#include <Havok/Common/Base/Types/hkBaseTypes.h>
#include <Havok/Physics2012/Collide/Shape/hkpShapeBase.h>
class hkpShapeRayCastInput;
class hkpShapeContainer;
struct hkpShapeRayCastInput;
class hkpRayShapeCollectionFilter {
public:

View File

@ -11,10 +11,10 @@ class hkSphere;
class hkcdVertex;
class hkpCdBody;
class hkpRayHitCollector;
class hkpShapeRayBundleCastInput;
class hkpShapeRayBundleCastOutput;
class hkpShapeRayCastInput;
class hkpShapeRayCastOutput;
struct hkpShapeRayBundleCastInput;
struct hkpShapeRayBundleCastOutput;
struct hkpShapeRayCastInput;
struct hkpShapeRayCastOutput;
/// Base interface for all physics shapes.
class hkpShapeBase : public hkcdShape {