Files
bullet3/Demos3/CpuDemos/deformable/CpuSoftBodyDemoInternalData.h
2013-09-03 15:09:12 -07:00

22 lines
382 B
C

#ifndef CPU_SOFTBODY_INTERNAL_DATA_H
#define CPU_SOFTBODY_INTERNAL_DATA_H
//#include "Bullet3OpenCL/Initialize/b3OpenCLUtils.h"
#include "Bullet3Common/b3Vector3.h"
struct CpuSoftBodyDemoInternalData
{
int m_clothShapeIndex;
float* m_clothVertices;
CpuSoftBodyDemoInternalData()
: m_clothShapeIndex(-1),
m_clothVertices(0)
{
}
};
#endif//CPU_SOFTBODY_INTERNAL_DATA_H