added support for multiple controllers

This commit is contained in:
Diego Waxemberg
2015-02-02 02:42:38 -05:00
parent 1313429f65
commit 93119f25a6
8 changed files with 237 additions and 165 deletions
+15
View File
@@ -0,0 +1,15 @@
//
// Controller.m
// Limelight
//
// Created by Diego Waxemberg on 2/1/15.
// Copyright (c) 2015 Limelight Stream. All rights reserved.
//
#import "Controller.h"
@implementation Controller
@synthesize playerIndex;
@synthesize lastButtonFlags, lastLeftTrigger, lastRightTrigger;
@synthesize lastLeftStickX, lastLeftStickY, lastRightStickX, lastRightStickY;
@end