Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/proxy/src/world_entities/WorldEntities.am @ 9608

Last change on this file since 9608 was 9608, checked in by bensch, 18 years ago

orxonox/proxy: added a new Turret for better network synchronisation

File size: 6.1 KB
Line 
1## THE SUBCLASSES. THESE MUST BE DYNAMICALLY LINKED OR COMPILED IN DIRECTLY
2WorldEntities_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                \
14                world_entities/environment.cc \
15                world_entities/skysphere.cc \
16                world_entities/skybox.cc \
17                world_entities/skydome.cc \
18                world_entities/terrain.cc \
19                world_entities/satellite.cc \
20                world_entities/movie_entity.cc \
21                world_entities/recorder.cc \
22                world_entities/character_attributes.cc \
23                world_entities/test_entity.cc \
24                world_entities/planet.cc \
25                world_entities/bsp_entity.cc \
26                \
27                world_entities/weapons/test_gun.cc \
28                world_entities/weapons/laser_cannon.cc \
29                world_entities/weapons/turret.cc \
30                world_entities/weapons/aiming_turret.cc \
31                world_entities/weapons/targeting_turret.cc \
32                world_entities/weapons/cannon.cc \
33                world_entities/weapons/hyperblaster.cc \
34                world_entities/weapons/aim.cc \
35                world_entities/weapons/aiming_system.cc \
36                world_entities/weapons/fps_sniper_rifle.cc \
37                world_entities/weapons/boomerang_gun.cc \
38                \
39                world_entities/projectiles/bomb.cc \
40                world_entities/projectiles/laser.cc \
41                world_entities/projectiles/rail_projectile.cc \
42                world_entities/projectiles/test_bullet.cc \
43                world_entities/projectiles/rocket.cc \
44                world_entities/projectiles/guided_missile.cc \
45                world_entities/projectiles/boomerang_projectile.cc \
46                world_entities/projectiles/hyperblast.cc \
47                \
48                world_entities/power_ups/turret_power_up.cc \
49                world_entities/power_ups/laser_power_up.cc \
50                \
51                world_entities/space_ships/space_ship.cc \
52                world_entities/space_ships/helicopter.cc \
53                world_entities/space_ships/hover.cc \
54                world_entities/space_ships/turbine_hover.cc \
55                world_entities/space_ships/spacecraft_2d.cc \
56                world_entities/space_ships/collision_probe.cc \
57                world_entities/space_ships/cruizer.cc \
58                world_entities/creatures/md2_creature.cc \
59                world_entities/creatures/fps_player.cc \
60                world_entities/spectator.cc \
61                \
62                \
63                world_entities/environments/water.cc \
64                world_entities/environments/model_entity.cc \
65                world_entities/environments/building.cc \
66                world_entities/environments/mapped_water.cc \
67                \
68                world_entities/elements/image_entity.cc \
69                world_entities/elements/text_element.cc \
70                world_entities/elements/glgui_radar.cc \
71                \
72                world_entities/effects/lightning_bolt.cc \
73                \
74                world_entities/script_trigger.cc
75
76
77WorldEntities_HEADERS_ = \
78                npcs/npc_test.h \
79                npcs/npc_test1.h \
80                npcs/ground_turret.h \
81                npcs/space_turret.h \
82                npcs/network_turret.h \
83                npcs/door.cc \
84                npcs/repair_station.h \
85                npcs/attractor_mine.h \
86                \
87                environment.h \
88                skysphere.h \
89                skybox.h \
90                skydome.h \
91                terrain.h \
92                satellite.h \
93                movie_entity.h \
94                recorder.h \
95                character_attributes.h \
96                test_entity.h \
97                planet.h \
98                bsp_entity.h \
99                \
100                weapons/test_gun.h \
101                weapons/laser_cannon.cc \
102                weapons/cannon.h \
103                weapons/hyperblaster.h \
104                weapons/turret.h \
105                weapons/aiming_turret.h \
106                weapons/targeting_turret.h \
107                weapons/boomerang_gun.h \
108                weapons/aim.h \
109                weapons/aiming_system.h \
110                weapons/fps_sniper_rifle.h \
111                \
112                projectiles/bomb.h \
113                projectiles/laser.h \
114                projectiles/rail_projectile.h \
115                projectiles/test_bullet.h \
116                projectiles/rocket.h \
117                projectiles/guided_missile.h \
118                projectiles/boomerang_projectile.h \
119                projectiles/hyperblast.h \
120                \
121                power_ups/turret_power_up.h \
122                power_ups/laser_power_up.h \
123                \
124                space_ships/space_ship.h \
125                space_ships/helicopter.h \
126                space_ships/hover.h \
127                space_ships/turbine_hover.h \
128                space_ships/spacecraft_2d.h \
129                space_ships/collision_probe.h \
130                space_ships/cruizer.h \
131                creatures/md2_creature.h \
132                creatures/fps_player.h \
133                spectator.h \
134                \
135                environments/water.h \
136                environments/model_entity.h \
137                environments/building.h \
138                environments/mapped_water.h \
139                \
140                elements/image_entity.h \
141                elements/text_element.h \
142                elements/glgui_radar.h \
143                \
144                effects/lightning_bolt.h \
145                \
146                script_trigger.h
Note: See TracBrowser for help on using the repository browser.