2010-10-01 22:03:15 -05:00
|
|
|
//
|
|
|
|
// MGMGradientButton.h
|
|
|
|
// VoiceMob
|
|
|
|
//
|
|
|
|
// Created by Mr. Gecko on 10/1/10.
|
2013-07-20 06:56:17 -05:00
|
|
|
// Copyright (c) 2011 Mr. Gecko's Media (James Coleman). http://mrgeckosmedia.com/
|
2010-10-01 22:03:15 -05:00
|
|
|
//
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
|
|
|
@interface MGMGradientButton : UIButton {
|
|
|
|
UIColor *buttonColor;
|
|
|
|
UIColor *buttonTouchColor;
|
|
|
|
UIColor *buttonDisabledColor;
|
|
|
|
BOOL touching;
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|