UniPRT SDK v2.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
15
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
30
31#endif
32#endif /* Line_h */