blob: 71e94e994b4e07f19fafdb1fbcbc6c47de23d7e7 (
plain) (
tree)
|
|
//
// Bottle.h
// Cart Collect
//
// Created by iD Student Account on 7/19/11.
// Copyright 2011 __MyCompanyName__. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "ValuableObject.h"
@interface Bottle : ValuableObject {
}
- (id)init;
@end
|