mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 01:10:44 +02:00
23 lines
754 B
Objective-C
23 lines
754 B
Objective-C
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
@interface Settings : NSObject {
|
|
}
|
|
@property (nonatomic, assign) NSInteger build;
|
|
@property (nonatomic, assign) BOOL loggedIn;
|
|
@property (nonatomic, assign) NSString* domain;
|
|
@property (nonatomic, assign) NSString* launcher;
|
|
@property (nonatomic, assign) NSString* _organizationBuildTag;
|
|
- (NSInteger) latestBuildVersion;
|
|
- (BOOL) isLoggedIn;
|
|
- (void) login:(BOOL)aLoggedIn;
|
|
- (void) buildVersion:(NSInteger) aBuildVersion;
|
|
- (void) setLauncherPath:(NSString*) aLauncherPath;
|
|
- (NSString*) getLaucnherPath;
|
|
- (void) setDomainUrl:(NSString*) aDomainUrl;
|
|
- (NSString*) getDomainUrl;
|
|
- (void) setOrganizationBuildTag:(NSString*) aOrganizationBuildTag;
|
|
- (NSString*) organizationBuildTag;
|
|
- (void) save;
|
|
+ (id) sharedSettings;
|
|
@end
|