mirror of
https://github.com/libretro/Play-.git
synced 2024-11-28 03:00:49 +00:00
26 lines
223 B
Plaintext
26 lines
223 B
Plaintext
#import "VirtualPadItem.h"
|
|
|
|
@implementation VirtualPadItem
|
|
|
|
-(void)draw: (CGContextRef)context
|
|
{
|
|
|
|
}
|
|
|
|
-(void)onPointerDown: (CGPoint)position
|
|
{
|
|
|
|
}
|
|
|
|
-(void)onPointerMove: (CGPoint)position
|
|
{
|
|
|
|
}
|
|
|
|
-(void)onPointerUp
|
|
{
|
|
|
|
}
|
|
|
|
@end
|