diff -r 6c78cc6bd7a6 -r 7c9ecb09a612 Source/BitHolder.h --- a/Source/BitHolder.h Thu Jul 03 17:44:30 2008 -0700 +++ b/Source/BitHolder.h Fri Jul 18 13:26:59 2008 -0700 @@ -39,6 +39,9 @@ /** BitHolders will be highlighted while the target of a drag operation */ @property BOOL highlighted; +/** An uninterpreted integer that the Game can use for its own purposes. */ +@property NSInteger tag; + /** Tests whether the bit is allowed to be dragged out of me. Returns the input bit, or possibly a different Bit to drag instead, or nil if not allowed. @@ -71,6 +74,7 @@ @protected Bit *_bit; BOOL _highlighted; + NSInteger _tag; } @end