summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLHapticInterface.h
blob: 89cf363800ef4fcc0998e6db0c50cf5cd7279e5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//
//  SDLHapticInterface.h
//  SmartDeviceLink-iOS
//
//  Copyright © 2017 smartdevicelink. All rights reserved.
//

#import <UIKit/UIKit.h>
#import "SDLManager.h"

@protocol SDLHapticInterface <NSObject>

- (instancetype)initWithWindow:(UIWindow *)window  sdlManager:(SDLManager *)sdlManager;
- (void)updateInterfaceLayout;
// additional method should be added to allow pure openGL apps to specify an array of spatial data directly

@end