// // CartDelegate.h // Cartographic // // Created by Starla Insigna on 8/27/11. // Copyright 2011 Four Island. All rights reserved. // #import @class Cart; @protocol CartDelegate @optional - (int)cartShouldFall:(Cart*)cart; - (BOOL)cartIsObstructed:(Cart*)cart; @end