Skip to content

Instantly share code, notes, and snippets.

@frr149
Created February 8, 2013 18:31
Show Gist options
  • Save frr149/4740970 to your computer and use it in GitHub Desktop.
Save frr149/4740970 to your computer and use it in GitHub Desktop.
#import "AGTStarWarsCharacter.h"
@interface AGTWookie : AGTStarWarsCharacter
+(id) wookie;
-(void)fullBodyWax;
@end
#import "AGTWookie.h"
@implementation AGTWookie
+(id) wookie{
return [[self alloc] init];
}
-(void)fullBodyWax{
NSLog(@"AUGUUUGUUUGUUUGRRRGHHHHH!!!!");
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment