blob: bfafa015a37c575dec3aabf4ed6637be425bb590 (
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
|
#ifndef MODORGANIZER_SANITYCHECKS_INCLUDED
#define MODORGANIZER_SANITYCHECKS_INCLUDED
namespace env
{
class Environment;
class Module;
} // namespace env
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 sanity
#endif // MODORGANIZER_SANITYCHECKS_INCLUDED
|