Source/Card.h
changeset 3 40d225cf9c43
parent 0 e9f7ba4718e1
child 4 d781b00f3ed4
     1.1 --- a/Source/Card.h	Fri Mar 07 11:43:02 2008 -0800
     1.2 +++ b/Source/Card.h	Tue Mar 11 09:21:53 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