24 lines
569 B
Objective-C
24 lines
569 B
Objective-C
//
|
|
// ViewController.h
|
|
// FMC Planner 2
|
|
//
|
|
// Created by Kilian Hofmann on 19.03.16.
|
|
// Copyright © 2016 Kilian Hofmann. All rights reserved.
|
|
//
|
|
|
|
#import "SharedDeclerations.h"
|
|
#import "ViewControllerKeyboard.h"
|
|
#import "ViewControllerScreen.h"
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface ViewController : UIViewController
|
|
|
|
@property(strong, nonatomic) ViewControllerScreen *screen;
|
|
@property(strong, nonatomic) ViewControllerKeyboard *keys;
|
|
|
|
@property(strong, nonatomic) IBOutlet UIView *backdropKeys;
|
|
|
|
@property(strong, nonatomic) IBOutlet UIView *backdropScreen;
|
|
|
|
@end
|