| 791 | } |
| 792 | |
| 793 | void EveTurretFiringFX::SetControllerVariable( const char* name, float value ) |
| 794 | { |
| 795 | for( auto it = m_stretch.begin(); it != m_stretch.end(); ++it ) |
| 796 | { |
| 797 | ITr2ControllerOwnerPtr co; |
| 798 | if( ( *it )->QueryInterface( BlueInterfaceIID<ITr2ControllerOwner>(), (void**)&co, BEQI_SILENT ) ) |
| 799 | { |
| 800 | co->SetControllerVariable( name, value ); |
| 801 | } |
| 802 | } |
| 803 | } |
| 804 | |
| 805 | void EveTurretFiringFX::HandleControllerEvent( const char* name ) |
| 806 | { |
nothing calls this directly
no test coverage detected