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/Common/Base/Types/hkBaseTypes.h>
#include <Havok/Physics2012/Collide/Shape/hkpShapeBase.h> #include <Havok/Physics2012/Collide/Shape/hkpShapeBase.h>
class hkpShapeRayCastInput;
class hkpShapeContainer; class hkpShapeContainer;
struct hkpShapeRayCastInput;
class hkpRayShapeCollectionFilter { class hkpRayShapeCollectionFilter {
public: public:

View File

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