mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-12 21:13:15 +02:00
20 lines
587 B
Objective-C
20 lines
587 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;
|
|
- (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) save;
|
|
+ (id) sharedSettings;
|
|
@end
|