1.1 --- a/Source/Card.h Fri Mar 07 11:43:02 2008 -0800
1.2 +++ b/Source/Card.h Mon Mar 10 17:32:04 2008 -0700
1.3 @@ -35,7 +35,7 @@
1.4 {
1.5 @private
1.6 int _serialNumber;
1.7 - CALayer *_front, *_back;
1.8 + GGBLayer *_front, *_back;
1.9 BOOL _faceUp;
1.10 }
1.11
1.12 @@ -56,11 +56,11 @@
1.13 /** Creates the sub-layer that displays the front side of the card.
1.14 Subclasses should probably call the superclass method, configure the layer it returns
1.15 (based on the card's serialNumber) and then return that layer. */
1.16 -- (CALayer*) createFront;
1.17 +- (GGBLayer*) createFront;
1.18
1.19 /** Creates the sub-layer that displays the back side of the card.
1.20 Subclasses should probably call the superclass method, configure the layer it returns and
1.21 return that layer. */
1.22 -- (CALayer*) createBack;
1.23 +- (GGBLayer*) createBack;
1.24
1.25 @end