add virtual plugin type 'not game'

the only maybe useful distinction between plugin types
is game / others, so add a 'virtual' plugin type which
represents everything but games
This commit is contained in:
Stefan Seyfried
2014-02-16 18:29:23 +01:00
parent 945452e35a
commit 44cd36c412
2 changed files with 4 additions and 10 deletions

View File

@@ -52,7 +52,8 @@ class CPlugins
P_TYPE_GAME = 0x2,
P_TYPE_TOOL = 0x4,
P_TYPE_SCRIPT = 0x8,
P_TYPE_LUA = 0x10
P_TYPE_LUA = 0x10,
P_TYPE_NO_GAME = P_TYPE_TOOL|P_TYPE_SCRIPT|P_TYPE_LUA
}
p_type_t;