Artifact 2be3bcf0861e3b8bb4b88da05e3c6c349fbeacc46867f0cd06a5952eadb0f515:
- File src/MapModelInfo.h — part of check-in [89fbd7a152] at 2025-03-20 13:21:56 on branch trunk — Make more use of convenience methods (user: js, size: 628) [annotate] [blame] [check-ins using]
#import <ObjFW/ObjFW.h> OF_ASSUME_NONNULL_BEGIN @interface MapModelInfo: OFObject @property (nonatomic) int rad, h, zoff, snap; @property (copy, nonatomic) OFString *name; + (instancetype)infoWithRad:(int)rad h:(int)h zoff:(int)zoff snap:(int)snap name:(OFString *)name; - (instancetype)init OF_UNAVAILABLE; - (instancetype)initWithRad:(int)rad h:(int)h zoff:(int)zoff snap:(int)snap name:(OFString *)name; @end OF_ASSUME_NONNULL_END