Add IPluginFileMapper Wrapper and bindings.

This commit is contained in:
AnyOldName3
2018-04-20 16:40:39 +01:00
parent 0abbab9f8c
commit 4feb06a099
3 changed files with 43 additions and 0 deletions
+13
View File
@@ -133,6 +133,19 @@ void IPluginDiagnoseWrapper::invalidate()
}
/// end IPluginDiagnose Wrapper
/////////////////////////////////////
/// IPluginFileMapper Wrapper
COMMON_I_PLUGIN_WRAPPER_DEFINITIONS(IPluginFileMapperWrapper)
MappingType IPluginFileMapperWrapper::mappings() const
{
try {
return this->get_override("mappings")();
} PYCATCH;
}
/// end IPluginFileMapper Wrapper
/////////////////////////////////////
/// IPluginGame Wrapper