mirror of
https://github.com/SoPat712/YTLitePlus.git
synced 2025-08-24 11:28:52 -04:00
18 lines
381 B
Objective-C
18 lines
381 B
Objective-C
//
|
|
// FLEXClassShortcuts.h
|
|
// FLEX
|
|
//
|
|
// Created by Tanner Bennett on 11/22/19.
|
|
// Copyright © 2020 FLEX Team. All rights reserved.
|
|
//
|
|
|
|
#import "FLEXShortcutsSection.h"
|
|
|
|
/// Provides handy shortcuts for class objects.
|
|
/// This is the default section used for all class objects.
|
|
@interface FLEXClassShortcuts : FLEXShortcutsSection
|
|
|
|
+ (instancetype)forObject:(Class)cls;
|
|
|
|
@end
|