mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-14 22:00:05 +00:00
1569f3845c
implement pybullet.setAdditionalSearchPath
15 lines
339 B
C++
15 lines
339 B
C++
#ifndef _B3_RESOURCE_PATH_H
|
|
#define _B3_RESOURCE_PATH_H
|
|
|
|
#include <string>
|
|
|
|
class b3ResourcePath
|
|
{
|
|
public:
|
|
static int getExePath(char* path, int maxPathLenInBytes);
|
|
static int findResourcePath(const char* sourceName, char* resourcePath, int maxResourcePathLenInBytes);
|
|
static void setAdditionalSearchPath(const char* path);
|
|
};
|
|
#endif
|
|
|