mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-29 06:07:56 +03:00
16 lines
291 B
C
16 lines
291 B
C
![]() |
#import <UIKit/UIKit.h>
|
||
|
#import "VirtualPadItem.h"
|
||
|
#include "PH_iOS.h"
|
||
|
|
||
|
@interface VirtualPadView : UIView
|
||
|
{
|
||
|
CPH_iOS* _padHandler;
|
||
|
}
|
||
|
|
||
|
@property NSArray<VirtualPadItem*>* items;
|
||
|
|
||
|
-(VirtualPadView*)initWithFrame: (CGRect)frame padHandler: (CPH_iOS*) padHandler;
|
||
|
-(void)rebuildPadItems;
|
||
|
|
||
|
@end
|