Differences From Artifact [a1a57242f0]:
- File src/MapModelInfo.m — part of check-in [14861826d4] at 2025-03-05 23:18:28 on branch trunk — Move classes into separate files (user: js, size: 369) [annotate] [blame] [check-ins using]
To Artifact [d506409929]:
- File src/MapModelInfo.m — part of check-in [89fbd7a152] at 2025-03-20 13:21:56 on branch trunk — Make more use of convenience methods (user: js, size: 641) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 7 8 9 10 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | + + + + + + + + + | #import "MapModelInfo.h" @implementation MapModelInfo + (instancetype)infoWithRad:(int)rad h:(int)h zoff:(int)zoff snap:(int)snap name:(OFString *)name { return [[self alloc] initWithRad:rad h:h zoff:zoff snap:snap name:name]; } - (instancetype)initWithRad:(int)rad h:(int)h zoff:(int)zoff snap:(int)snap name:(OFString *)name { self = [super init]; |
︙ |