mirror of
https://github.com/SoPat712/YTLitePlus.git
synced 2025-08-24 11:28:52 -04:00
17 lines
372 B
Objective-C
17 lines
372 B
Objective-C
//
|
|
// FLEXMethodCallingViewController.h
|
|
// Flipboard
|
|
//
|
|
// Created by Ryan Olson on 5/23/14.
|
|
// Copyright (c) 2020 FLEX Team. All rights reserved.
|
|
//
|
|
|
|
#import "FLEXVariableEditorViewController.h"
|
|
#import "FLEXMethod.h"
|
|
|
|
@interface FLEXMethodCallingViewController : FLEXVariableEditorViewController
|
|
|
|
+ (instancetype)target:(id)target method:(FLEXMethod *)method;
|
|
|
|
@end
|