forked from erkyrath/Inform7-IDE-Mac
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIFStandardProject.h
43 lines (33 loc) · 1.17 KB
/
IFStandardProject.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
32
33
34
35
36
37
38
39
40
41
42
43
//
// IFStandardProject.h
// Inform
//
// Created by Andrew Hunter on Sat Sep 13 2003.
// Copyright (c) 2003 Andrew Hunter. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "IFProjectType.h"
//
// Project type that creates an Inform 6 project with a simple initial source file
//
@interface IFStandardProject : NSObject<IFProjectType> {
}
@end
//
// Setup view for a standard Inform 6 project
//
@interface IFStandardProjectView : NSObject<IFProjectSetupView> {
IBOutlet NSTextField* name; // Field that contains the initial name of the game
IBOutlet NSTextField* headline; // Field that contains the games initial headline
IBOutlet NSTextView* teaser; // Field that contains the games initial teaser
IBOutlet NSTextField* initialRoom; // Field that contains the name of the games initial room
IBOutlet NSTextView* initialRoomDescription; // Field that contains the description of the games initial room
IBOutlet NSView* view; // View that contains the lot
}
- (NSString*) name;
- (NSString*) headline;
- (NSString*) teaser;
- (NSString*) initialRoom;
- (NSString*) initialRoomDescription;
- (NSView*) view;
@end