1
0
mirror of https://github.com/thes3m/XNI synced 2024-12-26 13:26:06 +01:00

Empty implementation added for gamer services to avoid warnings.

git-svn-id: http://xni.googlecode.com/svn/XNI@63 ac433895-eea3-a490-d80a-17149a75e588
This commit is contained in:
Matej Jan 2011-04-13 22:36:12 +00:00
parent 49293a9610
commit 761a891017
2 changed files with 22 additions and 0 deletions

View File

@ -11,4 +11,21 @@
@implementation Gamer
@synthesize displayName, gamertag, tag;
+ (SignedInGamerCollection*) signedInGamers {
[NSException raise:@"NotImplementedException" format:@"This method is not yet implemented."];
return nil;
}
+ (Gamer*) getFromGamertag:(NSString*)gamertag {
[NSException raise:@"NotImplementedException" format:@"This method is not yet implemented."];
return nil;
}
- (GamerProfile*) getProfile {
[NSException raise:@"NotImplementedException" format:@"This method is not yet implemented."];
return nil;
}
@end

View File

@ -11,4 +11,9 @@
@implementation SignedInGamer
- (AchievementCollection *)getAchievements {
[NSException raise:@"NotImplementedException" format:@"This method is not yet implemented."];
return nil;
}
@end