| 125 | } |
| 126 | |
| 127 | void xLaserBoltEmitter::update(F32 dt) |
| 128 | { |
| 129 | debug_update(dt); |
| 130 | |
| 131 | if (start_collide) |
| 132 | { |
| 133 | |
| 134 | } |
| 135 | else |
| 136 | { |
| 137 | |
| 138 | } |
| 139 | |
| 140 | static_queue<bolt>::iterator it; |
| 141 | while (it != this->bolts.end()) |
| 142 | { |
| 143 | bolt& b = *it; |
| 144 | |
| 145 | update(b, dt); |
| 146 | |
| 147 | U8 collided; |
| 148 | F32 prev_dist; |
| 149 | effect_data* itfx; |
| 150 | effect_data* endfx; |
| 151 | // effect_data* itfx; |
| 152 | // effect_data* endfx; |
| 153 | } |
| 154 | } |
| 155 | |
| 156 | void xLaserBoltEmitter::render() |
| 157 | { |
nothing calls this directly
no test coverage detected