diff -r db7bb080c3d5 -r 0b1c315ffc64 Source/Player.h --- a/Source/Player.h Tue Jul 08 13:12:01 2008 -0700 +++ b/Source/Player.h Sun Feb 06 16:31:03 2011 -0800 @@ -35,6 +35,9 @@ @property (readonly, getter=isFriendly) BOOL friendly; // Is this player the current player or an ally? @property (readonly, getter=isUnfriendly) BOOL unfriendly; // Is this player an opponent of the current player? @property (readonly) Player *nextPlayer, *previousPlayer; // The next/previous player in sequence + +/** Copy all of the player's attributes (name, local...) into myself. */ +- (void) copyFrom: (Player*)player; @end