| 42 | static std::vector<TexposHandle> textures; |
| 43 | |
| 44 | DFhackCExport command_result plugin_init(color_ostream &out, std::vector<PluginCommand> &commands) { |
| 45 | textures = Textures::loadTileset(Core::getInstance().getHackPath() / "data" / "art" / "pathable.png", 32, 32, true); |
| 46 | return CR_OK; |
| 47 | } |
| 48 | |
| 49 | DFhackCExport command_result plugin_shutdown(color_ostream &out) { |
| 50 | return CR_OK; |
nothing calls this directly
no test coverage detected