diff -r db7bb080c3d5 -r 3b750982ff39 Source/Player.h --- a/Source/Player.h Tue Jul 08 13:12:01 2008 -0700 +++ b/Source/Player.h Thu Jul 17 13:29:04 2008 -0700 @@ -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