blob: 8786ee78e34b877dc13651e14439d40a0f10a857 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#ifndef MODORGANIZER_SANITYCHECKS_INCLUDED
#define MODORGANIZER_SANITYCHECKS_INCLUDED
namespace env
{
class Environment;
class Module;
}
namespace MOBase
{
class IPluginGame;
}
class Settings;
namespace sanity
{
void checkEnvironment(const env::Environment& env);
int checkIncompatibleModule(const env::Module& m);
int checkPaths(MOBase::IPluginGame& game, const Settings& s);
} // namespace
#endif // MODORGANIZER_SANITYCHECKS_INCLUDED
|