APLOC2/Week1/APLOC2 Week 1/APLOC2 Week 1/GoodChild.m
Brent Marohnic 8d1db02fb8 Final Commit
2013-02-07 23:46:04 -05:00

21 lines
316 B
Objective-C

//
// GoodChild.m
// APLOC2 Week 1
//
// Created by Brent Marohnic on 2/7/13.
// Copyright (c) 2013 Brent Marohnic. All rights reserved.
//
#import "GoodChild.h"
#import "Child.h"
@implementation GoodChild
-(void)setAttributes
{
intChild = 0;
strName = @"Jack";
childType = CHILDTYPE_GOOD;
}
@end