Add support for game controllers

This commit is contained in:
Cameron Gutman
2014-10-20 21:13:13 -04:00
parent 37428c8c77
commit f2ae32c45c
4 changed files with 153 additions and 1 deletions

View File

@@ -0,0 +1,20 @@
//
// ControllerSupport.h
// Limelight
//
// Created by Cameron Gutman on 10/20/14.
// Copyright (c) 2014 Limelight Stream. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface ControllerSupport : NSObject
-(id) init;
-(void) cleanup;
@property (nonatomic, strong) id connectObserver;
@property (nonatomic, strong) id disconnectObserver;
@end