mirror of
https://github.com/nickshanks/ResKnife.git
synced 2025-01-21 15:33:02 +00:00
16 lines
235 B
Objective-C
16 lines
235 B
Objective-C
#import <Cocoa/Cocoa.h>
|
|
#import "Element.h"
|
|
|
|
@interface ElementKEYB : Element
|
|
{
|
|
NSMutableArray *subElements;
|
|
}
|
|
|
|
- (void)setSubElements:(NSMutableArray *)a;
|
|
- (NSMutableArray *)subElements;
|
|
|
|
@end
|
|
|
|
@interface ElementKEYE : Element
|
|
@end
|