Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
26 lines (20 loc) · 590 Bytes

SDL_uikitview.h

File metadata and controls

26 lines (20 loc) · 590 Bytes
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//
// SDL_uikitview.h
// iPodSDL
//
// Created by Holmes Futrell on 6/23/08.
// Copyright 2008 __MyCompanyName__. All rights reserved.
//
#import <UIKit/UIKit.h>
#include "SDL_stdinc.h"
#include "SDL_mouse.h"
#include "SDL_mouse_c.h"
#include "SDL_events.h"
#define MAX_SIMULTANEOUS_TOUCHES 5
@interface SDL_uikitview : UIView {
SDL_Mouse mice[MAX_SIMULTANEOUS_TOUCHES];
}
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event;
- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event;
- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event;
@end