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

20 lines
396 B
Objective-C

//
// cricketInsect.h
// APLOC2 Week 1
//
// Created by Brent Marohnic on 2/11/13.
// Copyright (c) 2013 Brent Marohnic. All rights reserved.
//
#import "baseInsect.h"
@interface cricketInsect : baseInsect
// insect specific data members used to calculate overall insect annoyance level
@property int sleepDerprivationLevel;
@property int constantChirping;
@property int nocturnal;
@end