Artifact a1a57242f0078e52170a757a43ab9ff65df9315212a25798fd80ea26e7d8df81:
- 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]
#import "MapModelInfo.h" @implementation MapModelInfo - (instancetype)initWithRad:(int)rad h:(int)h zoff:(int)zoff snap:(int)snap name:(OFString *)name { self = [super init]; _rad = rad; _h = h; _zoff = zoff; _snap = snap; _name = [name copy]; return self; } @end