APLOC2/Week1/APLOC2 Week 1/APLOC2 Week 1/antInsect.h
2013-02-12 20:25:31 -05:00

29 lines
453 B
Objective-C

//
// antInsect.h
// APLOC2 Week 1
//
// Created by Brent Marohnic on 2/11/13.
// Copyright (c) 2013 Brent Marohnic. All rights reserved.
//
#import "baseInsect.h"
@interface antInsect : baseInsect
{
int antType;
}
typedef enum
{
BLACK,
RED,
CARPENTER
} antType;
// insect specific data members used to calculate overall insect annoyance level
@property int homeInvader;
@property int sheerNumber;
@property int typeOfAnt;
@end