bullet3/examples/Utils/b3ResourcePath.h

15 lines
339 B
C
Raw Normal View History

#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