// // BetterAway.h // BetterAway Extension // // Created by Jer Noble on 7/20/12. // Copyright (c) 2012 Jer Noble. All rights reserved. // #import "TextualApplication.h" #import @interface TPIBetterAway : NSObject { IRCWorld* _world; NSString* _idleSuffix; } @property (retain) NSString* idleSuffix; - (void)pluginLoadedIntoMemory:(IRCWorld *)world; - (void)pluginUnloadedFromMemory; - (NSArray *)pluginSupportsUserInputCommands; - (void)messageSentByUser:(IRCClient *)client message:(NSString *)messageString command:(NSString *)commandString; @end