17 lines
309 B
Objective-C
17 lines
309 B
Objective-C
//
|
|
// iOSViewController.h
|
|
// MiniFB
|
|
//
|
|
// Created by Carlos Aragones on 22/04/2020.
|
|
// Copyright © 2020 Carlos Aragones. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#include "WindowData.h"
|
|
|
|
@interface iOSViewController : UIViewController
|
|
|
|
- (id) initWithWindowData:(SWindowData *) windowData;
|
|
|
|
@end
|