Refactor relative touch handling into a separate class

This commit is contained in:
Cameron Gutman
2020-11-01 10:19:32 -06:00
parent b650119fe9
commit 17d4079a5a
4 changed files with 253 additions and 174 deletions

View File

@@ -0,0 +1,19 @@
//
// RelativeTouchHandler.h
// Moonlight
//
// Created by Cameron Gutman on 11/1/20.
// Copyright © 2020 Moonlight Game Streaming Project. All rights reserved.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface RelativeTouchHandler : UIResponder
-(id)initWithView:(UIView*)view;
@end
NS_ASSUME_NONNULL_END