mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-14 05:40:05 +00:00
12 lines
273 B
C++
12 lines
273 B
C++
#ifndef MULTI_THREADING_EXAMPLE_H
|
|
#define MULTI_THREADING_EXAMPLE_H
|
|
|
|
enum EnumMultiThreadingExampleTypes
|
|
{
|
|
SINGLE_SIM_THREAD=0,
|
|
};
|
|
|
|
class CommonExampleInterface* MultiThreadingExampleCreateFunc(struct CommonExampleOptions& options);
|
|
|
|
#endif //MULTI_THREADING_EXAMPLE_H
|