mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-15 06:00:12 +00:00
b130be46f7
example usage: int main(int argc, char* argv[]) { btInProcessExampleBrowserInternalData* data = btCreateInProcessExampleBrowser(argc,argv); while (!(btIsExampleBrowserTerminated(data))) { } btShutDownExampleBrowser(data); return 0; }
14 lines
415 B
C
14 lines
415 B
C
#ifndef IN_PROCESS_EXAMPLE_BROWSER_H
|
|
#define IN_PROCESS_EXAMPLE_BROWSER_H
|
|
|
|
struct btInProcessExampleBrowserInternalData;
|
|
|
|
btInProcessExampleBrowserInternalData* btCreateInProcessExampleBrowser(int argc,char** argv2);
|
|
|
|
bool btIsExampleBrowserTerminated(btInProcessExampleBrowserInternalData* data);
|
|
|
|
void btShutDownExampleBrowser(btInProcessExampleBrowserInternalData* data);
|
|
|
|
|
|
#endif //IN_PROCESS_EXAMPLE_BROWSER_H
|