13 lines
289 B
Objective-C
13 lines
289 B
Objective-C
// Copyright 2015-present 650 Industries. All rights reserved.
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <EXFont/EXFont.h>
|
|
|
|
@interface EXFontManager : NSObject
|
|
|
|
- (instancetype)init;
|
|
- (EXFont *)fontForName:(NSString *)name;
|
|
- (void)setFont:(EXFont *)font forName:(NSString *)name;
|
|
|
|
@end
|