Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/presentation/src/world_entities/WorldEntities.am @ 9180

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

less errors/segfaults

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