Artifact bd54b60804b6a1020ed99c0052768cf0e2631c698556ece93fa2f636e474db3c:
- File src/MapModelInfo.m — part of check-in [c634a689e7] at 2025-03-29 17:13:40 on branch trunk — More style fixes (user: js, size: 565) [annotate] [blame] [check-ins using]
#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]; _rad = rad; _h = h; _zoff = zoff; _snap = snap; _name = [name copy]; return self; } @end