| 210 | //----------------------------------------------------------------------------- |
| 211 | |
| 212 | void SFXState::packData( BitStream* stream ) |
| 213 | { |
| 214 | Parent::packData( stream ); |
| 215 | |
| 216 | for( U32 i = 0; i < MaxIncludedStates; ++ i ) |
| 217 | sfxWrite( stream, mIncludedStates[ i ] ); |
| 218 | for( U32 i = 0; i < MaxExcludedStates; ++ i ) |
| 219 | sfxWrite( stream, mExcludedStates[ i ] ); |
| 220 | } |
| 221 | |
| 222 | //----------------------------------------------------------------------------- |
| 223 |
nothing calls this directly
no test coverage detected