| 1 | ## THE SUBCLASSES. THESE MUST BE DYNAMICALLY LINKED OR COMPILED IN DIRECTLY | 
|---|
| 2 | WorldEntities_SOURCES_ = \ | 
|---|
| 3 |                 world_entities/npcs/npc_test1.cc \ | 
|---|
| 4 |                 world_entities/npcs/npc_test.cc \ | 
|---|
| 5 |                 world_entities/npcs/ground_turret.cc \ | 
|---|
| 6 |                 world_entities/npcs/space_turret.cc \ | 
|---|
| 7 |                 world_entities/npcs/network_turret.cc \ | 
|---|
| 8 |                 world_entities/npcs/generic_npc.cc \ | 
|---|
| 9 |                 world_entities/npcs/door.cc \ | 
|---|
| 10 |                 world_entities/npcs/gate.cc \ | 
|---|
| 11 |                 world_entities/npcs/repair_station.cc \ | 
|---|
| 12 |                 world_entities/npcs/attractor_mine.cc \ | 
|---|
| 13 |                 world_entities/npcs/actionbox_enemy.cc \ | 
|---|
| 14 |                 world_entities/npcs/adm_turret.cc \ | 
|---|
| 15 |                 \ | 
|---|
| 16 |                 \ | 
|---|
| 17 |                 world_entities/weapons/weapon_slot.cc \ | 
|---|
| 18 |                 world_entities/weapons/test_gun.cc \ | 
|---|
| 19 |                 world_entities/weapons/laser_cannon.cc \ | 
|---|
| 20 |                 world_entities/weapons/turret.cc \ | 
|---|
| 21 |                 world_entities/weapons/aiming_turret.cc \ | 
|---|
| 22 |                 world_entities/weapons/targeting_turret.cc \ | 
|---|
| 23 |                 world_entities/weapons/cannon.cc \ | 
|---|
| 24 |                 world_entities/weapons/hyperblaster.cc \ | 
|---|
| 25 |                 world_entities/weapons/aim.cc \ | 
|---|
| 26 |                 world_entities/weapons/aiming_system.cc \ | 
|---|
| 27 |                 world_entities/weapons/fps_sniper_rifle.cc \ | 
|---|
| 28 |                 world_entities/weapons/boomerang_gun.cc \ | 
|---|
| 29 |                 world_entities/weapons/light_blaster.cc \ | 
|---|
| 30 |                 world_entities/weapons/medium_blaster.cc \ | 
|---|
| 31 |                 world_entities/weapons/heavy_blaster.cc \ | 
|---|
| 32 |                 world_entities/weapons/swarm_launcher.cc \ | 
|---|
| 33 |                 world_entities/weapons/spike_thrower.cc \ | 
|---|
| 34 |                 world_entities/weapons/acid_launcher.cc \ | 
|---|
| 35 |                 world_entities/weapons/rf_cannon.cc \ | 
|---|
| 36 |                 world_entities/weapons/disruptor.cc \ | 
|---|
| 37 |                 world_entities/weapons/nadion_laser.cc \ | 
|---|
| 38 |                 world_entities/weapons/bsp_weapon.cc \ | 
|---|
| 39 |                 \ | 
|---|
| 40 |                 world_entities/projectiles/lbolt.cc \ | 
|---|
| 41 |                 world_entities/projectiles/mbolt.cc \ | 
|---|
| 42 |                 world_entities/projectiles/hbolt.cc \ | 
|---|
| 43 |                 world_entities/projectiles/swarm_projectile.cc \ | 
|---|
| 44 |                 world_entities/projectiles/bomb.cc \ | 
|---|
| 45 |                 world_entities/projectiles/laser.cc \ | 
|---|
| 46 |                 world_entities/projectiles/rail_projectile.cc \ | 
|---|
| 47 |                 world_entities/projectiles/test_bullet.cc \ | 
|---|
| 48 |                 world_entities/projectiles/rocket.cc \ | 
|---|
| 49 |                 world_entities/projectiles/guided_missile.cc \ | 
|---|
| 50 |                 world_entities/projectiles/boomerang_projectile.cc \ | 
|---|
| 51 |                 world_entities/projectiles/hyperblast.cc \ | 
|---|
| 52 |                 world_entities/projectiles/spike.cc \ | 
|---|
| 53 |                 world_entities/projectiles/acid_splash.cc \ | 
|---|
| 54 |                 world_entities/projectiles/plasma_pulse.cc \ | 
|---|
| 55 |                 world_entities/projectiles/nadion_blast.cc \ | 
|---|
| 56 |                 \ | 
|---|
| 57 |                 world_entities/projectiles/projectile_weapon.cc \ | 
|---|
| 58 |                 world_entities/projectiles/spike_ball.cc \ | 
|---|
| 59 |                 \ | 
|---|
| 60 |                 world_entities/items/power_ups/turret_power_up.cc \ | 
|---|
| 61 |                 world_entities/items/power_ups/laser_power_up.cc \ | 
|---|
| 62 |                 \ | 
|---|
| 63 |                 world_entities/space_ships/space_ship.cc \ | 
|---|
| 64 |                 world_entities/space_ships/helicopter.cc \ | 
|---|
| 65 |                 world_entities/space_ships/hover.cc \ | 
|---|
| 66 |                 world_entities/space_ships/turbine_hover.cc \ | 
|---|
| 67 |                 world_entities/space_ships/spacecraft_2d.cc \ | 
|---|
| 68 |                 world_entities/space_ships/collision_probe.cc \ | 
|---|
| 69 |                 world_entities/space_ships/cruizer.cc \ | 
|---|
| 70 |                 world_entities/creatures/md2_creature.cc \ | 
|---|
| 71 |                 world_entities/creatures/fps_player.cc \ | 
|---|
| 72 |                 world_entities/spectator.cc \ | 
|---|
| 73 |                 \ | 
|---|
| 74 |                 \ | 
|---|
| 75 |                 world_entities/environments/water.cc \ | 
|---|
| 76 |                 world_entities/environments/model_entity.cc \ | 
|---|
| 77 |                 world_entities/environments/building.cc \ | 
|---|
| 78 |                 world_entities/environments/rotor.cc \ | 
|---|
| 79 |                 world_entities/environments/mapped_water.cc \ | 
|---|
| 80 |                 world_entities/environments/environment.cc \ | 
|---|
| 81 |                 world_entities/environments/skysphere.cc \ | 
|---|
| 82 |                 world_entities/environments/skybox.cc \ | 
|---|
| 83 |                 world_entities/environments/skydome.cc \ | 
|---|
| 84 |                 world_entities/environments/terrain.cc \ | 
|---|
| 85 |                 world_entities/environments/planet.cc \ | 
|---|
| 86 |                 world_entities/environments/bsp_entity.cc \ | 
|---|
| 87 |                 world_entities/environments/mover.cc \ | 
|---|
| 88 |                 world_entities/environments/mover_station.cc \ | 
|---|
| 89 |                 world_entities/environments/mover_station_list.cc \ | 
|---|
| 90 |                 world_entities/environments/mover_trigger.cc \ | 
|---|
| 91 |                 world_entities/environments/mover_trigger_approach.cc \ | 
|---|
| 92 |                 world_entities/environments/mover_trigger_delay_list.cc \ | 
|---|
| 93 |                 world_entities/environments/mover_trigger_event.cc \ | 
|---|
| 94 |                 world_entities/environments/mover_trigger_event_list.cc \ | 
|---|
| 95 |                 world_entities/environments/mover_trigger_intervisibility.cc \ | 
|---|
| 96 |                 world_entities/environments/mover_trigger_key.cc \ | 
|---|
| 97 |                 world_entities/environments/mover_trigger_list.cc \ | 
|---|
| 98 |                 world_entities/environments/mover_trigger_pointer_list.cc \ | 
|---|
| 99 |                 world_entities/environments/mover_trigger_mapstart.cc \ | 
|---|
| 100 |                 \ | 
|---|
| 101 |                 \ | 
|---|
| 102 |                 world_entities/weather_effects/atmospheric_engine.cc \ | 
|---|
| 103 |                 world_entities/weather_effects/weather_effect.cc \ | 
|---|
| 104 |                 world_entities/weather_effects/cloud_effect.cc \ | 
|---|
| 105 |                 world_entities/weather_effects/sun_effect.cc \ | 
|---|
| 106 |                 world_entities/weather_effects/fog_effect.cc \ | 
|---|
| 107 |                 world_entities/weather_effects/volfog_effect.cc \ | 
|---|
| 108 |                 world_entities/weather_effects/rain_effect.cc \ | 
|---|
| 109 |                 world_entities/weather_effects/snow_effect.cc \ | 
|---|
| 110 |                 world_entities/weather_effects/lightning_effect.cc \ | 
|---|
| 111 |                 world_entities/weather_effects/lense_flare.cc \ | 
|---|
| 112 |                 world_entities/elements/image_entity.cc \ | 
|---|
| 113 |                 \ | 
|---|
| 114 |                 world_entities/elements/text_element.cc \ | 
|---|
| 115 |                 world_entities/elements/glgui_radar.cc \ | 
|---|
| 116 |                 \ | 
|---|
| 117 |                 world_entities/effects/lightning_bolt.cc \ | 
|---|
| 118 |                 world_entities/effects/blink.cc \ | 
|---|
| 119 |                 \ | 
|---|
| 120 |                 world_entities/tools/movie_entity.cc \ | 
|---|
| 121 |                 world_entities/tools/recorder.cc \ | 
|---|
| 122 |                 world_entities/tools/blackscreen.cc \ | 
|---|
| 123 |                 world_entities/tools/scrolling_screen.cc \ | 
|---|
| 124 |                 world_entities/tools/mount_point.cc \ | 
|---|
| 125 |                 world_entities/tools/sound_entity.cc \ | 
|---|
| 126 |                 world_entities/tools/camera.cc \ | 
|---|
| 127 |                 \ | 
|---|
| 128 |                 world_entities/script_triggers/script_trigger.cc \ | 
|---|
| 129 |                 world_entities/script_triggers/space_trigger.cc \ | 
|---|
| 130 |                 world_entities/script_triggers/tick_trigger.cc \ | 
|---|
| 131 |                 world_entities/script_triggers/time_trigger.cc \ | 
|---|
| 132 |                 world_entities/script_triggers/action_trigger.cc \ | 
|---|
| 133 |                 \ | 
|---|
| 134 |                 \ | 
|---|
| 135 |                 world_entities/particles/particle_emitter.cc \ | 
|---|
| 136 |                 world_entities/particles/dot_emitter.cc \ | 
|---|
| 137 |                 world_entities/particles/box_emitter.cc \ | 
|---|
| 138 |                 world_entities/particles/plane_emitter.cc \ | 
|---|
| 139 |                 world_entities/particles/emitter_node.cc \ | 
|---|
| 140 |                 world_entities/particles/particle_system.cc \ | 
|---|
| 141 |                 world_entities/particles/sprite_particles.cc \ | 
|---|
| 142 |                 world_entities/particles/spark_particles.cc \ | 
|---|
| 143 |                 world_entities/particles/model_particles.cc \ | 
|---|
| 144 |                 world_entities/particles/dot_particles.cc \ | 
|---|
| 145 |                 world_entities/particles/quick_animation.cc \ | 
|---|
| 146 |                 \ | 
|---|
| 147 |                 \ | 
|---|
| 148 |                 \ | 
|---|
| 149 |                 world_entities/questGUI/quest_gui.cc \ | 
|---|
| 150 |                 world_entities/questGUI/quest.cc | 
|---|
| 151 |  | 
|---|
| 152 |  | 
|---|
| 153 |  | 
|---|
| 154 |  | 
|---|
| 155 |  | 
|---|
| 156 |  | 
|---|
| 157 |  | 
|---|
| 158 | WorldEntities_HEADERS_ = \ | 
|---|
| 159 |                 npcs/npc_test.h \ | 
|---|
| 160 |                 npcs/npc_test1.h \ | 
|---|
| 161 |                 npcs/ground_turret.h \ | 
|---|
| 162 |                 npcs/space_turret.h \ | 
|---|
| 163 |                 npcs/network_turret.h \ | 
|---|
| 164 |                 npcs/door.cc \ | 
|---|
| 165 |                 npcs/repair_station.h \ | 
|---|
| 166 |                 npcs/attractor_mine.h \ | 
|---|
| 167 |                 npcs/actionbox_enemy.h \ | 
|---|
| 168 |                 npcs/adm_turret.h \ | 
|---|
| 169 |                 \ | 
|---|
| 170 |                 environments/environment.h \ | 
|---|
| 171 |                 environments/skysphere.h \ | 
|---|
| 172 |                 environments/skybox.h \ | 
|---|
| 173 |                 environments/skydome.h \ | 
|---|
| 174 |                 environments/terrain.h \ | 
|---|
| 175 |                 tools/movie_entity.h \ | 
|---|
| 176 |                 tools/recorder.h \ | 
|---|
| 177 |                 character_attributes.h \ | 
|---|
| 178 |                 tools/blackscreen.h \ | 
|---|
| 179 |                 tools/scrolling_screen.h \ | 
|---|
| 180 |                 environments/planet.h \ | 
|---|
| 181 |                 environments/bsp_entity.h \ | 
|---|
| 182 |                 tools/mount_point.h \ | 
|---|
| 183 |                 tools/sound_entity.h \ | 
|---|
| 184 |                 tools/camera.h \ | 
|---|
| 185 |                 \ | 
|---|
| 186 |                 questGUI/quest_gui.h \ | 
|---|
| 187 |                 questGUI/quest.h \ | 
|---|
| 188 |                 \ | 
|---|
| 189 |                 weapons/weapon_slot.h \ | 
|---|
| 190 |                 weapons/test_gun.h \ | 
|---|
| 191 |                 weapons/laser_cannon.cc \ | 
|---|
| 192 |                 weapons/cannon.h \ | 
|---|
| 193 |                 weapons/hyperblaster.h \ | 
|---|
| 194 |                 weapons/turret.h \ | 
|---|
| 195 |                 weapons/aiming_turret.h \ | 
|---|
| 196 |                 weapons/targeting_turret.h \ | 
|---|
| 197 |                 weapons/boomerang_gun.h \ | 
|---|
| 198 |                 weapons/aim.h \ | 
|---|
| 199 |                 weapons/aiming_system.h \ | 
|---|
| 200 |                 weapons/fps_sniper_rifle.h \ | 
|---|
| 201 |                 weapons/light_blaster.h \ | 
|---|
| 202 |                 weapons/medium_blaster.h \ | 
|---|
| 203 |                 weapons/heavy_blaster.h \ | 
|---|
| 204 |                 weapons/swarm_launcher.h \ | 
|---|
| 205 |                 weapons/spike_thrower.h \ | 
|---|
| 206 |                 weapons/acid_launcher.h \ | 
|---|
| 207 |                 weapons/rf_cannon.h \ | 
|---|
| 208 |                 weapons/disruptor.h \ | 
|---|
| 209 |                 weapons/nadion_laser.h \ | 
|---|
| 210 |                 weapons/bsp_weapon.h \ | 
|---|
| 211 |                 \ | 
|---|
| 212 |                 projectiles/lbolt.h \ | 
|---|
| 213 |                 projectiles/mbolt.h \ | 
|---|
| 214 |                 projectiles/hbolt.h \ | 
|---|
| 215 |                 projectiles/swarm_projectile.h \ | 
|---|
| 216 |                 projectiles/bomb.h \ | 
|---|
| 217 |                 projectiles/laser.h \ | 
|---|
| 218 |                 projectiles/rail_projectile.h \ | 
|---|
| 219 |                 projectiles/test_bullet.h \ | 
|---|
| 220 |                 projectiles/rocket.h \ | 
|---|
| 221 |                 projectiles/guided_missile.h \ | 
|---|
| 222 |                 projectiles/boomerang_projectile.h \ | 
|---|
| 223 |                 projectiles/hyperblast.h \ | 
|---|
| 224 |                 projectiles/spike.h \ | 
|---|
| 225 |                 projectiles/spike_ball.h \ | 
|---|
| 226 |                 projectiles/acid_splash.h \ | 
|---|
| 227 |                 projectiles/plasma_pulse.h \ | 
|---|
| 228 |                 projectiles/nadion_blast.h \ | 
|---|
| 229 |                 \ | 
|---|
| 230 |                 projectiles/projectile_weapon.h \ | 
|---|
| 231 |                 projectiles/spike_ball.h \ | 
|---|
| 232 |                 \ | 
|---|
| 233 |                 items/power_ups/turret_power_up.h \ | 
|---|
| 234 |                 items/power_ups/laser_power_up.h \ | 
|---|
| 235 |                 \ | 
|---|
| 236 |                 space_ships/space_ship.h \ | 
|---|
| 237 |                 space_ships/helicopter.h \ | 
|---|
| 238 |                 space_ships/hover.h \ | 
|---|
| 239 |                 space_ships/turbine_hover.h \ | 
|---|
| 240 |                 space_ships/spacecraft_2d.h \ | 
|---|
| 241 |                 space_ships/collision_probe.h \ | 
|---|
| 242 |                 space_ships/cruizer.h \ | 
|---|
| 243 |                 creatures/md2_creature.h \ | 
|---|
| 244 |                 creatures/fps_player.h \ | 
|---|
| 245 |                 spectator.h \ | 
|---|
| 246 |                 \ | 
|---|
| 247 |                 environments/water.h \ | 
|---|
| 248 |                 environments/model_entity.h \ | 
|---|
| 249 |                 environments/building.h \ | 
|---|
| 250 |                 environments/mapped_water.h \ | 
|---|
| 251 |                 environments/rotor.h \ | 
|---|
| 252 |                 environments/mover.h \ | 
|---|
| 253 |                 environments/mover_station.h \ | 
|---|
| 254 |                 environments/mover_station_list.h \ | 
|---|
| 255 |                 environments/mover_trigger.h \ | 
|---|
| 256 |                 environments/mover_trigger_approach.h \ | 
|---|
| 257 |                 environments/mover_trigger_delay_list.h \ | 
|---|
| 258 |                 environments/mover_trigger_event.h \ | 
|---|
| 259 |                 environments/mover_trigger_event_list.h \ | 
|---|
| 260 |                 environments/mover_trigger_intervisibility.h \ | 
|---|
| 261 |                 environments/mover_trigger_key.h \ | 
|---|
| 262 |                 environments/mover_trigger_list.h \ | 
|---|
| 263 |                 environments/mover_trigger_pointer_list.h \ | 
|---|
| 264 |                 environments/mover_trigger_mapstart.h \ | 
|---|
| 265 |                 \ | 
|---|
| 266 |                 elements/image_entity.h \ | 
|---|
| 267 |                 elements/text_element.h \ | 
|---|
| 268 |                 elements/glgui_radar.h \ | 
|---|
| 269 |                 \ | 
|---|
| 270 |                 effects/lightning_bolt.h \ | 
|---|
| 271 |                 effects/blink.h \ | 
|---|
| 272 |                 \ | 
|---|
| 273 |                 script_triggers/space_trigger.h \ | 
|---|
| 274 |                 script_triggers/tick_trigger.h \ | 
|---|
| 275 |                 script_triggers/time_trigger.h \ | 
|---|
| 276 |                 script_triggers/action_trigger.h \ | 
|---|
| 277 |                 \ | 
|---|
| 278 |                 \ | 
|---|
| 279 |                 particles/particle_emitter.h \ | 
|---|
| 280 |                 particles/dot_emitter.h \ | 
|---|
| 281 |                 particles/box_emitter.h \ | 
|---|
| 282 |                 particles/plane_emitter.h \ | 
|---|
| 283 |                 particles/emitter_node.h \ | 
|---|
| 284 |                 \ | 
|---|
| 285 |                 particles/particle_system.h \ | 
|---|
| 286 |                 particles/sprite_particles.h \ | 
|---|
| 287 |                 particles/spark_particles.h \ | 
|---|
| 288 |                 particles/model_particles.h \ | 
|---|
| 289 |                 particles/dot_particles.h \ | 
|---|
| 290 |                 \ | 
|---|
| 291 |                 particles/quick_animation.h \ | 
|---|
| 292 |                 \ | 
|---|
| 293 |                 \ | 
|---|
| 294 |                 weather_effects/atmospheric_engine.h \ | 
|---|
| 295 |                 weather_effects/weather_effect.h \ | 
|---|
| 296 |                 weather_effects/sun_effect.h \ | 
|---|
| 297 |                 weather_effects/fog_effect.h \ | 
|---|
| 298 |                 weather_effects/volfog_effect.h \ | 
|---|
| 299 |                 weather_effects/rain_effect.h \ | 
|---|
| 300 |                 weather_effects/snow_effect.h \ | 
|---|
| 301 |                 weather_effects/cloud_effect.h \ | 
|---|
| 302 |                 weather_effects/lightning_effect.h \ | 
|---|
| 303 |                 weather_effects/lense_flare.h | 
|---|
| 304 |  | 
|---|
| 305 |  | 
|---|