mirror of
https://github.com/libretro/Play-.git
synced 2025-02-12 20:29:11 +00:00
17 lines
360 B
Objective-C
17 lines
360 B
Objective-C
#import <UIKit/UIKit.h>
|
|
#import "VirtualPadItem.h"
|
|
#include "PH_Generic.h"
|
|
|
|
@interface VirtualPadView : UIView
|
|
{
|
|
CPH_Generic* _padHandler;
|
|
}
|
|
|
|
@property NSArray<VirtualPadItem*>* items;
|
|
@property NSDictionary<NSString*, UIImage*>* itemImages;
|
|
|
|
-(VirtualPadView*)initWithFrame: (CGRect)frame padHandler: (CPH_Generic*) padHandler;
|
|
-(void)rebuildPadItems;
|
|
|
|
@end
|