gameui

diff include/button.h @ 3:f1014234dece

transitions in gui elements are awesome :)
author John Tsiombikas <nuclear@member.fsf.org>
date Fri, 21 Mar 2014 03:37:16 +0200
parents 3aa12cdb9925
children e0916bb20b7f
line diff
     1.1 --- a/include/button.h	Thu Mar 20 07:03:58 2014 +0200
     1.2 +++ b/include/button.h	Fri Mar 21 03:37:16 2014 +0200
     1.3 @@ -5,11 +5,11 @@
     1.4  
     1.5  namespace gameui {
     1.6  
     1.7 -class ButtonImpl;
     1.8 +struct ButtonImpl;
     1.9  
    1.10 -class Button {
    1.11 +class Button : public Widget {
    1.12  private:
    1.13 -	ButtonImpl *impl;
    1.14 +	ButtonImpl *button;
    1.15  
    1.16  public:
    1.17  	Button();