UniPRT SDK v1.0.0.0
 
载入中...
搜索中...
未找到
PglFont.h
1//
2// PglFont.h
3// sdk_json_Objective-C
4//
5// Created by Realbuber on 2024/5/23.
6//
7
8#ifndef PglFont_h
9#define PglFont_h
10
11#import <Foundation/Foundation.h>
12
13#import <UniPRT/PglCmd.h>
14#import <UniPRT/PGL.h>
15
16#if !defined(HIDE_PGL_INTERFACES)
17
20@interface PglFont : NSObject
21
22@property (nonatomic, strong) NSString *name;
23@property (nonatomic, assign) BOOL bold;
24@property (nonatomic, assign) BOOL italic;
25
26- (instancetype)initWithName:(NSString *)name;
27- (NSString *)description;
28
29@end
30
33#endif
34
35#endif /* PglFont_h */