| 234 | |
| 235 | template<U32 COUNT> |
| 236 | void LightAnimData::AnimValue<COUNT>::write( BitStream *stream ) const |
| 237 | { |
| 238 | for ( U32 i=0; i < COUNT; i++ ) |
| 239 | { |
| 240 | stream->write( value1[i] ); |
| 241 | stream->write( value2[i] ); |
| 242 | stream->write( period[i] ); |
| 243 | stream->writeString( keys[i] ); |
| 244 | } |
| 245 | } |
| 246 | |
| 247 | template<U32 COUNT> |
| 248 | void LightAnimData::AnimValue<COUNT>::read( BitStream *stream ) |
no test coverage detected