Changeset 9709 in orxonox.OLD for branches/new_class_id/src/util
- Timestamp:
- Aug 31, 2006, 10:51:08 PM (19 years ago)
- Location:
- branches/new_class_id/src/util
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/new_class_id/src/util/Makefile.am
r9494 r9709 4 4 noinst_LIBRARIES = libORXutils.a 5 5 6 libORXutils_a_SOURCES = fast_factory.cc\6 libORXutils_a_SOURCES = \ 7 7 object_manager.cc \ 8 8 state.cc \ … … 31 31 track/track_node.cc 32 32 33 noinst_HEADERS = fast_factory.h\33 noinst_HEADERS = \ 34 34 object_manager.h \ 35 35 state.h \ -
branches/new_class_id/src/util/kill_target.cc
r9705 r9709 23 23 24 24 #include "class_id.h" 25 CREATE_FACTORY(KillTarget, CL_KILL_TARGET);26 25 NewObjectListDefinitionID(KillTarget, CL_KILL_TARGET); 26 CREATE_FACTORY(KillTarget); 27 27 28 28 -
branches/new_class_id/src/util/multiplayer_team_deathmatch.cc
r9705 r9709 50 50 #include "class_id.h" 51 51 52 CREATE_FACTORY(MultiplayerTeamDeathmatch, CL_MULTIPLAYER_TEAM_DEATHMATCH);53 52 NewObjectListDefinitionID(MultiplayerTeamDeathmatch, CL_MULTIPLAYER_TEAM_DEATHMATCH); 53 CREATE_FACTORY(MultiplayerTeamDeathmatch); 54 54 /** 55 55 * constructor -
branches/new_class_id/src/util/singleplayer_shootemup.cc
r9705 r9709 26 26 27 27 #include "class_id.h" 28 CREATE_FACTORY(SingleplayerShootemup, CL_SINGLEPLAYER_SHOOTEMUP);29 28 NewObjectListDefinitionID(SingleplayerShootemup, CL_SINGLEPLAYER_SHOOTEMUP); 29 CREATE_FACTORY(SingleplayerShootemup); 30 30 31 31 /**
Note: See TracChangeset
for help on using the changeset viewer.