mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-14 22:00:05 +00:00
4b2c0f6d89
add an example using 'direct' fix the send-desired-state commands, to add flags for arguments set, using default values. Start exposing SDF loading in shared memory api, not fully implemented yet.
14 lines
309 B
C++
14 lines
309 B
C++
#ifndef PHYSICS_CLIENT_EXAMPLE_H
|
|
#define PHYSICS_CLIENT_EXAMPLE_H
|
|
|
|
enum ClientExampleOptions
|
|
{
|
|
eCLIENTEXAMPLE_LOOPBACK=1,
|
|
eCLIENTEXAMPLE_DIRECT=2,
|
|
eCLIENTEXAMPLE_SERVER=3,
|
|
};
|
|
|
|
class CommonExampleInterface* PhysicsClientCreateFunc(struct CommonExampleOptions& options);
|
|
|
|
#endif//PHYSICS_CLIENT_EXAMPLE_H
|