Changeset 7486 in orxonox.OLD for trunk/src/util/kill.cc
- Timestamp:
- May 2, 2006, 11:44:10 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/util/kill.cc
r7482 r7486 22 22 23 23 24 /**25 * standard constructor26 */27 Kill::Kill (WorldEntity* killer, WorldEntity* victim)28 {29 this->setClassID(CL_KILL, "Kill");30 31 this->killer = killer;32 this->victim = victim;33 }34 35 36 /**37 * standard constructor38 */39 Kill::Kill (WorldEntity* killer, Playable* victim)40 {41 this->setClassID(CL_KILL, "Kill");42 43 this->killer = killer;44 this->victim = (WorldEntity*)victim;45 }46 47 48 /**49 * standard deconstructor50 */51 Kill::~Kill ()52 {53 // delete what has to be deleted here54 }
Note: See TracChangeset
for help on using the changeset viewer.