| 836 | } |
| 837 | |
| 838 | void CWorldObjectsGenericDialog::OnGenericDefineAnimStates() { |
| 839 | if (m_current == -1) |
| 840 | return; |
| 841 | |
| 842 | CAnimStatesDialog dlg(Object_info[m_current].render_handle, Object_info[m_current].anim); |
| 843 | |
| 844 | if (dlg.DoModal() == IDOK) // Copy back into object |
| 845 | dlg.GetAnimData(Object_info[m_current].anim); |
| 846 | } |
| 847 | |
| 848 | void CWorldObjectsGenericDialog::OnGenericDelete() { |
| 849 | int answer, tl; |
nothing calls this directly
no test coverage detected