summaryrefslogtreecommitdiffstats
path: root/source/cPlugin.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/cPlugin.h')
-rw-r--r--source/cPlugin.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/cPlugin.h b/source/cPlugin.h
index a1e2a358f..af0d99134 100644
--- a/source/cPlugin.h
+++ b/source/cPlugin.h
@@ -80,7 +80,11 @@ public:
PluginLanguage GetLanguage() { return m_Language; }
void SetLanguage( PluginLanguage a_Language ) { m_Language = a_Language; }
+ bool CanBindCommands() { return m_bCanBindCommands; }
private:
+ friend class cPluginManager;
+ bool m_bCanBindCommands; // Only changed by cPluginManager
+
PluginLanguage m_Language;
std::vector< CommandStruct > m_Commands;
std::string m_Name;