mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 03:44:02 +02:00
fix build error on windows
This commit is contained in:
parent
72ad974b3e
commit
515b8ef395
1 changed files with 4 additions and 0 deletions
|
@ -10,6 +10,10 @@
|
|||
//
|
||||
|
||||
#include "CharacterGhostShape.h"
|
||||
|
||||
#include <assert.h>
|
||||
|
||||
|
||||
CharacterGhostShape::CharacterGhostShape(const btConvexHullShape* shape) :
|
||||
btConvexHullShape(reinterpret_cast<const btScalar*>(shape->getUnscaledPoints()), shape->getNumPoints(), sizeof(btVector3)) {
|
||||
assert(shape);
|
||||
|
|
Loading…
Reference in a new issue