1
2
3
4
5
6
7
8
9
10
11
12
|
#import <ObjFW/ObjFW.h>
OF_ASSUME_NONNULL_BEGIN
@interface MapModelInfo : OFObject
@property (nonatomic) int rad, h, zoff, snap;
@property (copy, nonatomic) OFString *name;
- (instancetype)initWithRad:(int)rad
h:(int)h
zoff:(int)zoff
snap:(int)snap
|
|
|
1
2
3
4
5
6
7
8
9
10
11
12
|
#import <ObjFW/ObjFW.h>
OF_ASSUME_NONNULL_BEGIN
@interface MapModelInfo: OFObject
@property (nonatomic) int rad, h, zoff, snap;
@property (copy, nonatomic) OFString *name;
- (instancetype)initWithRad:(int)rad
h:(int)h
zoff:(int)zoff
snap:(int)snap
|