UniPRT SDK v1.0.0.0
 
載入中...
搜尋中...
無符合項目
Font.h
1//
2// Font.h
3// sdk_json_Objective-C
4//
5// Created by Realbuber on 2024/5/9.
6//
7
8#ifndef Font_h
9#define Font_h
10
11// Font.h
12
13#import <Foundation/Foundation.h>
14
15#import <UniPRT/TSPL.h>
16#import <UniPRT/TsplCmd.h>
17
18#if !defined(HIDE_PGL_INTERFACES)
19
22@interface Font : NSObject
23
24@property (nonatomic, strong) NSString *name;
25@property (nonatomic, assign) BOOL bold;
26@property (nonatomic, assign) BOOL italic;
27
28- (instancetype)initWithName:(NSString *)name;
29- (NSString *)description;
30
31@end
32
35#endif
36
37#endif /* Font_h */