| 721 | } |
| 722 | |
| 723 | DFhackCExport command_result plugin_onstatechange(color_ostream &out, state_change_event event) |
| 724 | { |
| 725 | switch (event) { |
| 726 | case SC_MAP_UNLOADED: |
| 727 | cleanup_state(); |
| 728 | break; |
| 729 | default: |
| 730 | break; |
| 731 | } |
| 732 | |
| 733 | return CR_OK; |
| 734 | } |
| 735 | |
| 736 | DFhackCExport command_result plugin_onupdate ( color_ostream &out ) |
| 737 | { |
nothing calls this directly
no test coverage detected