mirror of
https://github.com/bulletphysics/bullet3
synced 2025-01-08 08:30:16 +00:00
14 lines
283 B
C
14 lines
283 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);
|
||
|
};
|
||
|
#endif
|
||
|
|