// // IDialog.h // minecraftpe // // Created by rhino on 10/20/11. // Copyright 2011 Mojang AB. All rights reserved. // #import #import #import @class minecraftpeViewController; @protocol IDialog -(void)addToView:(UIView*)parentView; -(void)setListener:(minecraftpeViewController*)listener; -(int)getUserInputStatus; -(std::vector)getUserInput; @end