-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMCCloud.h
31 lines (24 loc) · 835 Bytes
/
MCCloud.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//
// MCCloud.h
// MinecraftInTheCloud
//
// Created by Rishi Shah on 2/4/11.
// Copyright 2011 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@interface MCCloud : NSObject
// Clouds
@property (copy) NSString* DROPBOX;
// MineCraft
@property (readonly, copy) NSString* MINECRAFT;
@property (readonly, copy) NSString* WORLD1;
@property (readonly, copy) NSString* WORLD2;
@property (readonly, copy) NSString* WORLD3;
@property (readonly, copy) NSString* WORLD4;
@property (readonly, copy) NSString* WORLD5;
@property (readonly, copy) NSString* WORLDS;
// Methods
- (void) createLink: (NSString*)destFolder inFolder:(NSString *)parentFolder;
- (NSError*) initializeCloud:(NSString *)cloud worlds:(NSString *)world;
- (NSError*) initializeCloudWithoutCopying:(NSString *)cloud worlds:(NSString *)world;
@end