| 693 | } |
| 694 | |
| 695 | Script* Actor::GetScript(int32 index) const |
| 696 | { |
| 697 | CHECK_RETURN(index >= 0 && index < Scripts.Count(), nullptr); |
| 698 | return Scripts[index]; |
| 699 | } |
| 700 | |
| 701 | Script* Actor::GetScript(const MClass* type) const |
| 702 | { |
no test coverage detected