mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-31 18:13:44 +00:00
To expand with full Organic Maps and Maps.ME commits history run: git remote add om-historic [om-historic.git repo url] git fetch --tags om-historic git replace squashed-history historic-commits
18 lines
369 B
Objective-C
18 lines
369 B
Objective-C
#import <UIKit/UIKit.h>
|
|
|
|
#import "MWMTypes.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
NS_SWIFT_NAME(Track)
|
|
@interface MWMTrack : NSObject
|
|
|
|
@property(nonatomic, readonly) MWMTrackID trackId;
|
|
@property(nonatomic, readonly) NSString *trackName;
|
|
@property(nonatomic, readonly) NSInteger trackLengthMeters;
|
|
@property(nonatomic, readonly) UIColor *trackColor;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|