18 lines
423 B
C
Raw Normal View History

#ifndef PATHS_H
#define PATHS_H
class PATHS
{
public:
static wxString GetUserScriptingPath();
static wxString GetUserTemplatesPath();
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();
static wxString GetStockPluginsPath();
static wxString GetStockPlugins3DPath();
};
#endif