UniPRT SDK v1.0.0.0
 
Loading...
Searching...
No Matches
Line.h
1//
2// Line.h
3// sdk_json_Objective-C
4//
5// Created by Realbuber on 2024/5/13.
6//
7
8#ifndef Line_h
9#define Line_h
10
11
12#if !defined(HIDE_PGL_INTERFACES)
13
16@interface Line : NSObject
17
18@property (nonatomic, assign) int SR;
19@property (nonatomic, assign) int SC;
20@property (nonatomic, assign) int ER;
21@property (nonatomic, assign) int EC;
22@property (nonatomic, assign) int LT;
23
24- (instancetype)initWithLT:(int)lt SR:(int)sr SC:(int)sc ER:(int)er EC:(int)ec;
25- (NSString *)description;
26
27@end
28
31#endif
32#endif /* Line_h */