mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-14 13:50:04 +00:00
9708392322
add UDP network connection for physics client <-> server. also set spinning friction in rolling friction demo (otherwise objects may keep on spinning forever)
19 lines
287 B
C
19 lines
287 B
C
#ifndef PHYSICS_CLIENT_SHARED_MEMORY2_H
|
|
#define PHYSICS_CLIENT_SHARED_MEMORY2_H
|
|
|
|
#include "PhysicsClientC_API.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
|
|
b3PhysicsClientHandle b3ConnectSharedMemory2(int key);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif //PHYSICS_CLIENT_SHARED_MEMORY2_H
|