mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 21:57:57 +03:00
16 lines
359 B
Objective-C
16 lines
359 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
|