Git Plugin more WIP.

This commit is contained in:
Martín Lucas Golini
2023-12-17 14:44:00 -03:00
parent 4f1087a181
commit ac35e9ca0e
10 changed files with 130 additions and 17 deletions

View File

@@ -45,6 +45,10 @@ PluginManager* Plugin::getManager() const {
return mManager;
}
UISceneNode* Plugin::getUISceneNode() const {
return mManager->getUISceneNode();
}
String Plugin::i18n( const std::string& key, const String& def ) const {
return getManager()->getUISceneNode()->i18n( key, def );
}