blob: 37c41d518032b41383e061301423220b3fc91d30 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
//
// Bottle.h
// Cart Collect
//
// Created by iD Student Account on 7/19/11.
// Copyright 2011 __MyCompanyName__. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "FallingObject.h"
#import "ValuableObject.h"
@interface Bottle : FallingObject <ValuableObject> {
}
- (id)init;
@end
|