Limo
A simple mod manager
Loading...
Searching...
No Matches
plugintype.h
Go to the documentation of this file.
1
5
6#pragma once
7
8#include <string>
9#include <vector>
10
11
16namespace fomod
17{
32
33const std::vector<std::string> PLUGIN_TYPE_NAMES{ "Required",
34 "Optional",
35 "Recommended",
36 "Not Available",
37 "Could be usable" };
38}
The fomod namespace contains classes used for parsing a FOMOD xml file and for creating an installer.
Definition dependency.h:22
PluginType
Describes how a plugin is presented.
Definition plugintype.h:20
@ not_usable
Cannot be installed.
Definition plugintype.h:28
@ recommended
Should be installed.
Definition plugintype.h:26
@ could_be_usable
Usage unclear, will be treated like optional.
Definition plugintype.h:30
@ optional
Can be installed.
Definition plugintype.h:24
@ required
Always installed.
Definition plugintype.h:22