![]() |
00001 // 00002 // StatsScene.m 00003 // Author: Thomas Taylor 00004 // 00005 // The 'stats' scene 00006 // 00007 // 06/03/2012: Created class 00008 // 00009 00010 #import "StatsScene.h" 00011 00012 @implementation StatsScene 00013 00014 #pragma mark - 00015 #pragma mark Initialisation 00016 00021 -(id)init 00022 { 00023 self = [super init]; 00024 00025 if (self != nil) 00026 { 00027 statsLayer = [StatsLayer node]; 00028 [self addChild:statsLayer]; 00029 } 00030 00031 return self; 00032 } 00033 00034 @end