| 26 | } |
| 27 | |
| 28 | void Plugin::initialize() |
| 29 | { |
| 30 | MYGUI_LOGGING(LogSection, Info, "initialize"); |
| 31 | |
| 32 | Berkelium::init(Berkelium::FileString::empty()); |
| 33 | |
| 34 | MyGUI::FactoryManager::getInstance().registerFactory<MyGUI::BerkeliumWidget>("Widget"); |
| 35 | MyGUI::Gui::getInstance().eventFrameStart += MyGUI::newDelegate(this, &Plugin::update); |
| 36 | } |
| 37 | |
| 38 | void Plugin::shutdown() |
| 39 | { |
nothing calls this directly
no test coverage detected