mirror of
https://github.com/thes3m/XNI
synced 2024-12-26 13:26:06 +01:00
Adding Game Center classes skeletons. git-svn-id: http://xni.googlecode.com/svn/XNI@62 ac433895-eea3-a490-d80a-17149a75e588
35 lines
807 B
Objective-C
35 lines
807 B
Objective-C
//
|
|
// Achievement.h
|
|
// XNI
|
|
//
|
|
// Created by Matej Jan on 18.2.11.
|
|
// Copyright 2011 Retronator. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
|
|
@interface Achievement : NSObject {
|
|
NSString *description;
|
|
BOOL displayBeforeEarned;
|
|
NSDate *earnedDateTime;
|
|
int gamerScore;
|
|
NSString *howToEarn;
|
|
BOOL isEarned;
|
|
NSString *key;
|
|
NSString *name;
|
|
}
|
|
|
|
@property (nonatomic, readonly) NSString *description;
|
|
@property (nonatomic, readonly) BOOL displayBeforeEarned;
|
|
@property (nonatomic, readonly) NSDate *earnedDateTime;
|
|
@property (nonatomic, readonly) int gamerScore;
|
|
@property (nonatomic, readonly) NSString *howToEarn;
|
|
@property (nonatomic, readonly) BOOL isEarned;
|
|
@property (nonatomic, readonly) NSString *key;
|
|
@property (nonatomic, readonly) NSString *name;
|
|
|
|
- (NSData*) getPicture;
|
|
|
|
@end
|