UniPRT SDK v1.0.0.0
 
載入中...
搜尋中...
無符合項目
PglBox.h
1//
2// PglBox.h
3// sdk_json_Objective-C
4//
5// Created by Realbuber on 2024/5/23.
6//
7
8#ifndef PglBox_h
9#define PglBox_h
10
11#import <Foundation/Foundation.h>
12#import <UniPRT/PglCmd.h>
13#import <UniPRT/PGL.h>
14
15
16NS_ASSUME_NONNULL_BEGIN
17
20@interface PglBox : NSObject
21
22@property (nonatomic, assign) int LT;
23@property (nonatomic, assign) int SR;
24@property (nonatomic, assign) int SC;
25@property (nonatomic, assign) int ER;
26@property (nonatomic, assign) int EC;
27@property (nonatomic, assign) int RD;
28
29- (instancetype)initWithLT:(int)lt SR:(int)sr SC:(int)sc ER:(int)er EC:(int)ec;
30- (NSString *)description;
31
32@end
33
36NS_ASSUME_NONNULL_END
37
38#endif /* PglBox_h */