| 805 | } |
| 806 | |
| 807 | void CWorldObjectsRobotDialog::OnDefineAnimstates() { |
| 808 | #if 0 // LGT: used undefined |
| 809 | int n=D3EditState.current_robot; |
| 810 | |
| 811 | if (!Robots[n].used) |
| 812 | return; |
| 813 | |
| 814 | CAnimStatesDialog dlg(Robots[n].render_handle,Robots[n].anim); |
| 815 | |
| 816 | if (dlg.DoModal() == IDOK) //Copy back into object |
| 817 | dlg.GetAnimData(Robots[n].anim); |
| 818 | #endif |
| 819 | } |
| 820 | |
| 821 | BOOL CWorldObjectsRobotDialog::OnHelpInfo(HELPINFO *pHelpInfo) { |
| 822 | // TODO: Add your message handler code here and/or call default |
nothing calls this directly
no test coverage detected