UniPRT SDK v1.0.0.0
 
Loading...
Searching...
No Matches
FontSize.h
1//
2// FontSize.h
3// sdk_json_Objective-C
4//
5// Created by Realbuber on 2024/5/8.
6//
7
8#ifndef FontSize_h
9#define FontSize_h
10
11// FontSize.h
12#import <Foundation/Foundation.h>
13#import <UniPRT/APair.h>
14#import <UniPRT/IFontSize.h>
15
38@interface FontSize : APair <IFontSize>
39- (instancetype)initWithX:(float)x y:(float)y;
40@end
41
42
43#endif /* FontSize_h */
Base class for APair.
Definition APair.h:36
Font size in the X and Y direction allows for stretching/resizing when non-default font size is desir...
Definition FontSize.h:38
A protocol defining the interface for FontSize classes.
Definition IFontSize.h:37