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:
parent
49293a9610
commit
761a891017
@ -11,4 +11,21 @@
|
|||||||
|
|
||||||
@implementation Gamer
|
@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
|
@end
|
||||||
|
@ -11,4 +11,9 @@
|
|||||||
|
|
||||||
@implementation SignedInGamer
|
@implementation SignedInGamer
|
||||||
|
|
||||||
|
- (AchievementCollection *)getAchievements {
|
||||||
|
[NSException raise:@"NotImplementedException" format:@"This method is not yet implemented."];
|
||||||
|
return nil;
|
||||||
|
}
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user