mirror of
https://github.com/moonlight-stream/moonlight-qt.git
synced 2026-04-10 17:56:26 +00:00
19 lines
410 B
Objective-C
19 lines
410 B
Objective-C
//
|
|
// OnScreenControls.h
|
|
// Limelight
|
|
//
|
|
// Created by Diego Waxemberg on 12/28/14.
|
|
// Copyright (c) 2014 Limelight Stream. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface OnScreenControls : NSObject
|
|
|
|
- (id) initWithView:(UIView*)view;
|
|
- (void) handleTouchDownEvent:(UIEvent*)event;
|
|
- (void) handleTouchUpEvent:(UIEvent*) event;
|
|
- (void) handleTouchMovedEvent:(UIEvent*)event;
|
|
|
|
@end
|