UniPRT SDK v1.0.0.0
 
載入中...
搜尋中...
無符合項目
Box.h
1//
2// Box.h
3// sdk_json_Objective-C
4//
5// Created by Realbuber on 2024/5/13.
6//
7
8#ifndef Box_h
9#define Box_h
10#if !defined(HIDE_PGL_INTERFACES)
11
14@interface Box : NSObject
15
16@property (nonatomic, assign) int SR;
17@property (nonatomic, assign) int SC;
18@property (nonatomic, assign) int ER;
19@property (nonatomic, assign) int EC;
20@property (nonatomic, assign) int LT;
21@property (nonatomic, assign) int RD;
22
23- (instancetype)initWithLT:(int)lt SR:(int)sr SC:(int)sc ER:(int)er EC:(int)ec;
24- (NSString *)description;
25
26@end
27
30#endif
31
32#endif /* Box_h */