-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathIFEmptyProject.m
More file actions
42 lines (33 loc) · 1.03 KB
/
IFEmptyProject.m
File metadata and controls
42 lines (33 loc) · 1.03 KB
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
32
33
34
35
36
37
38
39
40
41
42
//
// IFEmptyProject.m
// Inform
//
// Created by Andrew Hunter on Sat Sep 13 2003.
// Copyright (c) 2003 Andrew Hunter. All rights reserved.
//
#import "IFEmptyProject.h"
@implementation IFEmptyProject
- (NSString*) projectName {
return [[NSBundle mainBundle] localizedStringForKey: @"Empty v6 project"
value: @"Empty project"
table: nil];
}
- (NSString*) projectHeading {
return [[NSBundle mainBundle] localizedStringForKey: @"InformVersion"
value: @"Inform 6.3"
table: nil];
}
- (NSAttributedString*) projectDescription {
return [[[NSAttributedString alloc] initWithString:
[[NSBundle mainBundle] localizedStringForKey: @"Creates an empty Inform project"
value: @"Creates an empty Inform project"
table: nil]] autorelease];
}
- (NSObject<IFProjectSetupView>*) configView {
return nil;
}
- (void) setupFile: (IFProjectFile*) file
fromView: (NSObject<IFProjectSetupView>*) view {
[file addSourceFile: @"main.inf"];
}
@end