mirror of
https://github.com/SoPat712/YTLitePlus.git
synced 2025-11-01 21:23:38 -04:00
21 lines
393 B
Objective-C
21 lines
393 B
Objective-C
//
|
|
// FLEXGlobalsSection.h
|
|
// FLEX
|
|
//
|
|
// Created by Tanner Bennett on 7/11/19.
|
|
// Copyright © 2020 FLEX Team. All rights reserved.
|
|
//
|
|
|
|
#import "FLEXTableViewSection.h"
|
|
#import "FLEXGlobalsEntry.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface FLEXGlobalsSection : FLEXTableViewSection
|
|
|
|
+ (instancetype)title:(NSString *)title rows:(NSArray<FLEXGlobalsEntry *> *)rows;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|