| 84 | } |
| 85 | |
| 86 | DynamicLight* DynamicLightCollection::GetLightFromID(int id) { |
| 87 | for (auto& dynamic_light : dynamic_lights) { |
| 88 | if (dynamic_light.id == id) { |
| 89 | return &dynamic_light; |
| 90 | } |
| 91 | } |
| 92 | return NULL; |
| 93 | } |
| 94 | |
| 95 | void DynamicLightCollection::Draw(BulletWorld& bw) { |
| 96 | } |
no outgoing calls
no test coverage detected