mirror of
https://github.com/nickshanks/ResKnife.git
synced 2025-01-14 00:31:37 +00:00
17 lines
232 B
Objective-C
17 lines
232 B
Objective-C
#import "Element.h"
|
|
|
|
@interface ElementDBYT : Element
|
|
{
|
|
SInt8 value;
|
|
}
|
|
|
|
- (void)setValue:(SInt8)v;
|
|
- (SInt8)value;
|
|
|
|
- (NSString *)stringValue;
|
|
- (void)setStringValue:(NSString *)str;
|
|
|
|
@end
|
|
|
|
@interface ElementKBYT : ElementDBYT
|
|
@end |