Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/single_player_map/src/world_entities/WorldEntities.am @ 8870

Last change on this file since 8870 was 8870, checked in by patrick, 18 years ago

add doors

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