-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPROJECT_LANG_3_V1.m
21 lines (21 loc) · 1.05 KB
/
PROJECT_LANG_3_V1.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
@interface classname : projectLanguageFileThree {
// Start of script
// instance variables
}
+ classMethod1;
+ (return_type)classMethod2;
+ (return_type)classMethod3:(param1_type)param1_varName;
- (return_type)instanceMethod1With1Parameter:(param1_type)param1_varName;
- (return_type)instanceMethod2With2Parameters:(param1_type)param1_varName
param2_callName:(param2_type)param2_varName;
@iOS6_ObjectiveC classname : superclassname {
// I chose Objective-C as the third project language file for this project (Touch Pets Dogs 2 Rewritten) as it is the language required for writing older iOS and MacOS applications.
NSLog(@"I chose Objective-C as the third project language file for this project (Touch Pets Dogs 2 Rewritten) as it is the language required for writing older iOS and MacOS applications.");
}
@end
/* File info
* File version: `1 (Saturday, June 19th 2021 at 4:46 pm)
* File type: Objective-C Source file (*.m)
* Line count (including blank lines and compiler line): 22
* This script is incomplete, and needs lots of work */
// End of script