2021-01-22 21:23:37 -05:00
|
|
|
|
|
|
|
#ifndef PATHS_H
|
|
|
|
#define PATHS_H
|
|
|
|
|
|
|
|
class PATHS
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static wxString GetUserScriptingPath();
|
|
|
|
static wxString GetUserTemplatesPath();
|
2021-01-23 10:46:48 -05:00
|
|
|
static wxString GetUserPluginsPath();
|
|
|
|
static wxString GetUserPlugins3DPath();
|
2021-01-22 23:17:32 -05:00
|
|
|
static wxString GetDefaultUserProjectsPath();
|
2021-01-22 23:27:39 -05:00
|
|
|
static wxString GetStockScriptingPath();
|
2021-01-23 10:46:48 -05:00
|
|
|
static wxString GetStockPluginsPath();
|
|
|
|
static wxString GetStockPlugins3DPath();
|
2021-01-22 21:23:37 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|