mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-13 21:30:09 +00:00
17 lines
444 B
C++
17 lines
444 B
C++
#ifndef PHYSICS_CLIENT_SHARED_MEMORY3_H
|
|
#define PHYSICS_CLIENT_SHARED_MEMORY3_H
|
|
|
|
#include "PhysicsDirect.h"
|
|
|
|
class PhysicsClientSharedMemory2 : public PhysicsDirect
|
|
{
|
|
class SharedMemoryCommandProcessor* m_proc;
|
|
|
|
public:
|
|
PhysicsClientSharedMemory2(SharedMemoryCommandProcessor* proc);
|
|
virtual ~PhysicsClientSharedMemory2();
|
|
|
|
void setSharedMemoryInterface(class SharedMemoryInterface* sharedMem);
|
|
};
|
|
|
|
#endif //PHYSICS_CLIENT_SHARED_MEMORY3_H
|