gameui

view src/button.cc @ 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
children e0916bb20b7f
line source
1 #include "button.h"
3 namespace gameui {
5 struct ButtonImpl {
6 };
8 Button::Button()
9 {
10 button = new ButtonImpl;
11 }
13 Button::~Button()
14 {
15 delete button;
16 }
18 } // namespace gameui